pub trait AddByRef<Rhs = Self> { type Output; // Required method fn add_by_ref(&self, rhs: &Rhs) -> Self::Output; }