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