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