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