pub trait HashmapLike<K, E> where K: Eq + Hash, { fn insert(&mut self, k: K, e: E) -> Option<E>; }
Trait HashmapLike adopter for Hashmap-like containers.
Inserts a key-value pair into the map.