pub type MBResult<T> = Result<T, MBError>;
Convenient type alias of Result type for miniblink.
enum MBResult<T> { Ok(T), Err(MBError), }
Contains the success value
Contains the error value