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