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

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