pub trait BitwiseMsb<Rhs = bool> {
type Output;
// Required methods
fn and_msb(self, n: u8, rhs: Rhs) -> Self::Output;
fn or_msb(self, n: u8, rhs: Rhs) -> Self::Output;
fn xor_msb(self, n: u8, rhs: Rhs) -> Self::Output;
}Expand description
Bitwise & (and), | (or) and ^ (xor) operations on
the Msb bits of self.