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