pub trait Msb {
    fn get_bit_at_index_from_msb(&self, index: usize) -> Option<u8>;
    fn common_prefix_count(&self, other: &Self) -> usize;
}

Required Methods

Implementations on Foreign Types

Implementors