pub trait FromMap: Default {
    fn from_genericmap(map: BTreeMap<String, Value, Global>) -> Self;
}

Required Methods

Converts a GenericMap back into a structure. Constraints: assumes that value types conform to the original types of the struct.

Implementors