pub type OpResult<T, E> = Result<T, OpError<E>>;
Shorthand for a Result where the error type is an OpError.
Result
OpError
pub enum OpResult<T, E> { Ok(T), Err(OpError<E>), }
Contains the success value
Contains the error value