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