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