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