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