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