pub trait ToHashMap {
    fn to_map(&self) -> HashMap<String, FieldValue>;
fn from_map(
        map: HashMap<String, FieldValue>
    ) -> Result<Self, StructMapError>
    where
        Self: Sized
; }

Required methods

Implementors