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

pub trait NotLsb {
    type Output;
    fn not_lsb(self, n: u8) -> Self::Output;
}
Expand description

Bitwise ! (not) operation on the Lsb bits of self.

Associated Types

Required methods

fn not_lsb(self, n: u8) -> Self::Output[src]

Implementations on Foreign Types

impl NotLsb for u8[src]

type Output = u8

fn not_lsb(self, n: u8) -> Self::Output[src]

Implementors