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