pub fn serial_hashmap_no_length<W, K, V>(
map: &HashMap<K, V, BuildHasherDefault<FnvHasher>, Global>,
out: &mut W
) -> Result<(), <W as Write>::Err>where
W: Write,
K: Serial,
V: Serial,
Expand description

Write a HashMap as a list of key-value pairs in to particular order, without the length information.