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