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