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