Trait wezterm_dynamic::FromDynamic
source · pub trait FromDynamic {
// Required method
fn from_dynamic(
value: &Value,
options: FromDynamicOptions
) -> Result<Self, Error>
where Self: Sized;
}
Expand description
The FromDynamic trait allows a type to construct itself from a Value. This trait can be derived.