logo
pub trait HashMapLike<K, E> where
    K: Eq + Hash
{ fn insert(&mut self, k: K, e: E) -> Option<E>; }
Expand description

Trait HashMapLike adopter for HashMap-like containers.

Required Methods

Inserts a key-value pair into the map.

Implementors