pub trait Converter: Sized {
    fn to_field_value(&self) -> FieldValue;
fn to_primitive(fv: FieldValue) -> Result<Self, StructMapError>; }

Required methods

Implementations on Foreign Types

Implementors