Trait deepmesa_collections::bitvec::traits::NotMsb

source ·
pub trait NotMsb {
    type Output;

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

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

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl NotMsb for u8

§

type Output = u8

source§

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

Implementors§