DynLintStore

Trait DynLintStore 

Source
pub trait DynLintStore:
    Any
    + DynSync
    + DynSend {
    // Required method
    fn lint_groups_iter(&self) -> Box<dyn Iterator<Item = LintGroup> + '_>;
}

Required Methods§

Source

fn lint_groups_iter(&self) -> Box<dyn Iterator<Item = LintGroup> + '_>

Provides a way to access lint groups without depending on rustc_lint

Implementors§