pub fn hash_map<K, V, H>(map: &HashMap<K, V, RandomState>, hasher: &mut H)where
    K: Hash,
    V: Hash,
    H: Hasher,
Expand description

Hash a HashMap.

The standard library does not provide (yet) a Hash implementation for the HashMap type. This can be used instead.

Note that this function not particularly strong and does not protect against DoS attacks.