Trait redux::bitio::BitRead [] [src]

pub trait BitRead {
    fn read_bits(&mut self, bits: usize) -> Result<usize>;
}

A trait for object that allow reading symbols of variable bit lengths.

Required Methods

Reads a single symbol from the input.

Implementors