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