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