mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
29 lines
794 B
Rust
29 lines
794 B
Rust
use anyhow::anyhow;
|
|
use mlua::{ExternalError, FromLua, IntoLua, Lua, Value};
|
|
use yazi_core::mgr::OpenDoOpt;
|
|
use yazi_shared::event::ActionCow;
|
|
|
|
#[derive(Clone, Debug, Default)]
|
|
pub struct OpenDoForm {
|
|
pub opt: OpenDoOpt,
|
|
}
|
|
|
|
impl From<OpenDoOpt> for OpenDoForm {
|
|
fn from(opt: OpenDoOpt) -> Self { Self { opt } }
|
|
}
|
|
|
|
impl TryFrom<ActionCow> for OpenDoForm {
|
|
type Error = anyhow::Error;
|
|
|
|
fn try_from(mut a: ActionCow) -> Result<Self, Self::Error> {
|
|
Ok(Self { opt: a.take_any("opt").ok_or_else(|| anyhow!("Invalid 'opt' in OpenDoForm"))? })
|
|
}
|
|
}
|
|
|
|
impl FromLua for OpenDoForm {
|
|
fn from_lua(_: Value, _: &Lua) -> mlua::Result<Self> { Err("unsupported".into_lua_err()) }
|
|
}
|
|
|
|
impl IntoLua for OpenDoForm {
|
|
fn into_lua(self, _: &Lua) -> mlua::Result<Value> { Err("unsupported".into_lua_err()) }
|
|
}
|