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