pub trait FromValue: Sized {
    fn from_value(value: Value) -> Result<Self>;
}

Required Methods

Implementations on Foreign Types

Implementors