yazi/yazi-parser/src/mgr/update_mimes.rs
2025-10-01 20:03:41 +08:00

29 lines
766 B
Rust

use anyhow::bail;
use hashbrown::HashMap;
use mlua::{ExternalError, FromLua, IntoLua, Lua, Value};
use yazi_shared::{data::{Data, DataKey}, event::CmdCow};
#[derive(Debug)]
pub struct UpdateMimesOpt {
pub updates: HashMap<DataKey, Data>,
}
impl TryFrom<CmdCow> for UpdateMimesOpt {
type Error = anyhow::Error;
fn try_from(mut c: CmdCow) -> Result<Self, Self::Error> {
let Ok(updates) = c.take("updates") else {
bail!("Invalid 'updates' argument in UpdateMimesOpt");
};
Ok(Self { updates })
}
}
impl FromLua for UpdateMimesOpt {
fn from_lua(_: Value, _: &Lua) -> mlua::Result<Self> { Err("unsupported".into_lua_err()) }
}
impl IntoLua for UpdateMimesOpt {
fn into_lua(self, _: &Lua) -> mlua::Result<Value> { Err("unsupported".into_lua_err()) }
}