pub trait FromFieldValue: Sized {
// Required method
fn from_field_value(v: &FieldValue) -> Option<Self>;
}Expand description
Typed extraction from a FieldValue.
Required Methods§
fn from_field_value(v: &FieldValue) -> Option<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".