pub type ReadResult = Result<u8, ReadError>;
pub enum ReadResult { Ok(u8), Err(ReadError), }
Contains the success value
Contains the error value