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