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

Required Methods

Implementors