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