pub trait HashMapLike<K, E>where K: Eq + Hash,{ // Required method 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.