pub fn hashmap<K, V, I>(pairs: I) -> HashMap<K, V>where I: IntoIterator<Item = (K, V)>, K: Hash + Eq,
Create a HashMap from key-value pairs
HashMap