pub type Result<T> = Result<T, OrtError>;
Type alias for the Result
Result
pub enum Result<T> { Ok(T), Err(OrtError), }
Contains the success value
Contains the error value