[][src]Trait bitbit::reader::Bit

pub trait Bit {
    fn extract_bit(byte: u8) -> (bool, u8);
fn shift_bit(word: u32) -> u32;
fn set_bit(word: u32) -> u32;
fn shift_into_place(word: u32, nbits: usize) -> u32; }

Required methods

fn extract_bit(byte: u8) -> (bool, u8)

fn shift_bit(word: u32) -> u32

fn set_bit(word: u32) -> u32

fn shift_into_place(word: u32, nbits: usize) -> u32

Loading content...

Implementors

impl Bit for LSB[src]

impl Bit for MSB[src]

Loading content...