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