use mlua::{ExternalError, FromLua, IntoLua, Lua, Value}; use serde::Deserialize; use yazi_shared::{SStr, event::ActionCow}; #[derive(Debug, Deserialize)] pub struct DeprecateForm { pub content: SStr, } impl TryFrom for DeprecateForm { type Error = anyhow::Error; fn try_from(a: ActionCow) -> Result { Ok(a.deserialize()?) } } impl FromLua for DeprecateForm { fn from_lua(_: Value, _: &Lua) -> mlua::Result { Err("unsupported".into_lua_err()) } } impl IntoLua for DeprecateForm { fn into_lua(self, _: &Lua) -> mlua::Result { Err("unsupported".into_lua_err()) } }