pub trait NotLsb { type Output; // Required method fn not_lsb(self, n: u8) -> Self::Output; }
Bitwise ! (not) operation on the Lsb bits of self.
!