use crate::hashmap::*; /// Serialize a hash map - we don't have traits, so we fix the type of the /// values (this is not the interesting part anyway) pub(crate) fn serialize(_hm: HashMap) { unimplemented!(); } /// Deserialize a hash map - we don't have traits, so we fix the type of the /// values (this is not the interesting part anyway) pub(crate) fn deserialize() -> HashMap { unimplemented!(); }