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