mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
29 lines
766 B
Rust
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()) }
|
|
}
|