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