Trait bitstream::reader::Endianess [] [src]

pub trait Endianess {
    fn swap(s: usize) -> usize;
    fn get_bits(v: usize, start: usize, len: usize) -> usize;
    fn combine_words(first: usize, second: usize) -> u64;
}

A trait for handling endian-specific operations

Required Methods

Implementors