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