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