pub trait Insert<K, V = ()>: Collection { // Required method fn insert(&mut self, key: K, value: V) -> Option<V>; }
Insert the (key, value), and return the old value
std