pub type Result<T> = Result<T, MaecError>;
Specialized Result type for MAEC operations
pub enum Result<T> { Ok(T), Err(MaecError), }
Contains the success value
Contains the error value