Trait Merge

Source
trait Merge {
    // Required method
    fn merge(&mut self, other: Self, replace: ReplaceOpt);
}

Required Methods§

Source

fn merge(&mut self, other: Self, replace: ReplaceOpt)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T> Merge for Option<T>

Source§

fn merge(&mut self, other: Self, replace: ReplaceOpt)

Implementors§