pub trait RuleType:
Send
+ Sync
+ 'static {
// Required method
fn diagnose(&self, file: &SolidFile, files: &[SolidFile]) -> Vec<LintDiag>;
}
pub trait RuleType:
Send
+ Sync
+ 'static {
// Required method
fn diagnose(&self, file: &SolidFile, files: &[SolidFile]) -> Vec<LintDiag>;
}