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