pub trait BitRead {
    fn bit_read(cursor: &mut BitCursor) -> Result<Self, BitCursorError>;
}
Expand description

A trait similar to std::io::Read, for reading bit-sized amounts from a BitCursor.

Required Methods

Implementations on Foreign Types

Implementors