pub fn replace<K: Eq + Hash, V>( left: &mut HashMap<K, V>, right: &mut HashMap<K, V> )
On conflict, replace elements of left with right.
left
right
In other words, this gives precedence to right.