pub trait Merge<Rhs = Self> { // Required method fn merge(&mut self, rhs: &Rhs); }
Merges rhs into self