Trait deepmesa_collections::bitvec::traits::BitwiseLsbAssign[][src]

pub trait BitwiseLsbAssign<Rhs = bool> {
    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.

Required methods

Implementations on Foreign Types

Implementors