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