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