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