Function recurse

Source
pub fn recurse<T: Merge>(left: &mut Option<T>, right: Option<T>)
Expand description

If both left and right are Some, recursively merge the two. Otherwise, fall back to overwrite_none.