Expand description
Merge strategies for Option
Functions§
- overwrite_
none - Overwrite
left
withright
only ifleft
isNone
. - recurse
- If both
left
andright
areSome
, recursively merge the two. Otherwise, fall back tooverwrite_none
.
Merge strategies for Option
left
with right
only if left
is None
.left
and right
are Some
, recursively merge the two.
Otherwise, fall back to overwrite_none
.