Type Alias CheckResult

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CheckError)

Contains the error value