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