pub type ConstraintResult<T> = Result<T, ConstraintError>;
Expand description
Shorthand for a Result
where the error type is a ConstraintError
.
Aliased Type§
enum ConstraintResult<T> {
Ok(T),
Err(ConstraintError),
}
pub type ConstraintResult<T> = Result<T, ConstraintError>;
Shorthand for a Result
where the error type is a ConstraintError
.
enum ConstraintResult<T> {
Ok(T),
Err(ConstraintError),
}