sxyazi/yazi · error · anyhow::Error
Invalid 'opt' in DisplaceDoForm
Error message
Invalid 'opt' in DisplaceDoForm
What it means
Error "Invalid 'opt' in DisplaceDoForm" thrown in sxyazi/yazi.
Source
Thrown at yazi-parser/src/mgr/displace_do.rs:15
use anyhow::anyhow;
use mlua::{ExternalError, FromLua, IntoLua, Lua, Value};
use yazi_core::mgr::DisplaceOpt;
use yazi_shared::event::ActionCow;
#[derive(Clone, Debug)]
pub struct DisplaceDoForm {
pub opt: DisplaceOpt,
}
impl TryFrom<ActionCow> for DisplaceDoForm {
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 DisplaceDoForm"))? })
}
}
impl FromLua for DisplaceDoForm {
fn from_lua(_: Value, _: &Lua) -> mlua::Result<Self> { Err("unsupported".into_lua_err()) }
}
impl IntoLua for DisplaceDoForm {
fn into_lua(self, _: &Lua) -> mlua::Result<Value> { Err("unsupported".into_lua_err()) }
}
View on GitHub (pinned to 94abcfa92f)
When it happens
Trigger: Thrown at yazi-parser/src/mgr/displace_do.rs:15 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of sxyazi/yazi@94abcfa92f (2026-08-16).
Data as JSON: /api/errors/7e7f5f9657231ada.
Report an issue: GitHub.