pub trait BitwiseLsbAssign<Rhs = bool> {
// Required methods
fn and_lsb_assign(&mut self, n: u8, rhs: Rhs);
fn or_lsb_assign(&mut self, n: u8, rhs: Rhs);
fn xor_lsb_assign(&mut self, n: u8, rhs: Rhs);
}Expand description
Bitwise &= (and assign), |= (or assign) and ^= (xor
assign) operations on the Lsb bits of self.