pub trait FromValue: Debug {
// Required method
fn from_value(value: Annotated<Value>) -> Annotated<Self>
where Self: Sized;
}
Expand description
Implemented for all meta structures.
pub trait FromValue: Debug {
// Required method
fn from_value(value: Annotated<Value>) -> Annotated<Self>
where Self: Sized;
}
Implemented for all meta structures.