pub type Result<T> = Result<T, BitReaderError>;Expand description
Result type for those BitReader operations that can fail.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(BitReaderError),
}pub type Result<T> = Result<T, BitReaderError>;Result type for those BitReader operations that can fail.
pub enum Result<T> {
Ok(T),
Err(BitReaderError),
}