LintResult

Type Alias LintResult 

Source
type LintResult = Result<Result<(), LintError>>;
Expand description

The outer error is for unexpected fatal runtime problems; the inner error is for the lint failing in an expected way.

Aliased Type§

enum LintResult {
    Ok(Result<(), LintError>),
    Err(Error),
}

Variants§

§1.0.0

Ok(Result<(), LintError>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value