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