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