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

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

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

Associated Types

Required methods

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

Implementations on Foreign Types

impl NotMsb for u8[src]

type Output = u8

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

Implementors