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
leftandright. - overwrite
- On conflict, overwrite elements of
leftwithright. - recurse
- On conflict, recursively merge the elements.