Module option

Module option 

Source
Expand description

Merge strategies for Option

Functionsยง

overwrite_none
Overwrite left with right only if left is None.
overwrite_with_some
Overwrite the left value with the right value if the right value is Some.
recurse
If both left and right are Some, recursively merge the two. Otherwise, fall back to overwrite_none.