Type Alias essential_constraint_vm::OpResult
source · pub type OpResult<T> = Result<T, OpError>;
Expand description
Shorthand for a Result
where the error type is an OpError
.
Aliased Type§
enum OpResult<T> {
Ok(T),
Err(OpError),
}