pub type ReadResult<T, E = BitError> = Result<T, E>;
Either the read bits in the requested format or a BitError
BitError
pub enum ReadResult<T, E = BitError> { Ok(T), Err(E), }
Contains the success value
Contains the error value