Trait structmap::FromMap[][src]

pub trait FromMap: Default {
    fn from_genericmap(hashmap: GenericMap) -> Self;
}

Required methods

fn from_genericmap(hashmap: GenericMap) -> Self[src]

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

Implementors