pub trait StructMerge<Src> {
    fn merge(&mut self, src: Src);
}
Expand description

Merge another struct into Self.

Required Methods

Merge the given struct into Self whilst consuming it.

Implementors

Implement the StructMerge trait for all types that provide StructMergeInto for it.