Expand description
Merge strategies for hash maps.
These strategies are only available if the std
feature is enabled.
Functionsยง
- ignore
- On conflict, ignore elements from
right
. - intersection
- Merge recursively elements if the key is present in
left
andright
. - overwrite
- On conflict, overwrite elements of
left
withright
. - recurse
- On conflict, recursively merge the elements.