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