pub trait Merge<T: ?Sized> {
    fn merge(self, other: T) -> Self;
}

Required Methods

Merges T into self

Implementors