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