pub trait Mergeable { // Required method fn merge(&mut self, other: &Self); }
A type that can be merged with itself.