pub type BitResult<T> = Result<T, BitError>;
Result type for bitstream operations.
pub enum BitResult<T> { Ok(T), Err(BitError), }
Contains the success value
Contains the error value