NotLsb

Trait 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

Source§

type Output = u8

Source§

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

Implementors§