pub trait FromValue: Debug {
// Required method
fn from_value(value: Annotated<Value>) -> Annotated<Self>
where Self: Sized;
}Expand description
Implemented for all meta structures.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".