pub type Result<T> = Result<T, EvmeError>;
Result type for the mega-evme command
pub enum Result<T> { Ok(T), Err(EvmeError), }
Contains the success value
Contains the error value