pub trait BitwiseMsbAssign<Rhs = bool> {
// Required methods
fn and_msb_assign(&mut self, n: u8, rhs: Rhs);
fn or_msb_assign(&mut self, n: u8, rhs: Rhs);
fn xor_msb_assign(&mut self, n: u8, rhs: Rhs);
}Expand description
Bitwise &= (and assign), |= (or assign) and ^= (xor
assign) operations on the Msb bits of self.