Trait deepmesa_collections::bitvec::traits::NotLsb

source ·
pub trait NotLsb {
    type Output;

    // Required method
    fn not_lsb(self, n: u8) -> Self::Output;
}
Expand description

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

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl NotLsb for u8

§

type Output = u8

source§

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

Implementors§