mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
26 lines
715 B
Rust
26 lines
715 B
Rust
use mlua::{ExternalError, FromLua, IntoLua, Lua, Value};
|
|
use yazi_shared::{event::ActionCow, url::UrlBuf};
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct UpdatePagedForm {
|
|
pub page: Option<usize>,
|
|
pub only_if: Option<UrlBuf>,
|
|
}
|
|
|
|
impl From<ActionCow> for UpdatePagedForm {
|
|
fn from(mut a: ActionCow) -> Self {
|
|
Self { page: a.first().ok(), only_if: a.take("only-if").ok() }
|
|
}
|
|
}
|
|
|
|
impl From<()> for UpdatePagedForm {
|
|
fn from(_: ()) -> Self { Self::default() }
|
|
}
|
|
|
|
impl FromLua for UpdatePagedForm {
|
|
fn from_lua(_: Value, _: &Lua) -> mlua::Result<Self> { Err("unsupported".into_lua_err()) }
|
|
}
|
|
|
|
impl IntoLua for UpdatePagedForm {
|
|
fn into_lua(self, _: &Lua) -> mlua::Result<Value> { Err("unsupported".into_lua_err()) }
|
|
}
|