pub trait LintLevelsProvider {
    fn current_specs(&self) -> &FxHashMap<LintId, LevelAndSource>;
    fn current_specs_mut(&mut self) -> &mut FxHashMap<LintId, LevelAndSource>;
    fn get_lint_level(
        &self,
        lint: &'static Lint,
        sess: &Session
    ) -> LevelAndSource; fn push_expectation(
        &mut self,
        _id: LintExpectationId,
        _expectation: LintExpectation
    ) { ... } }

Required Methods

Provided Methods

Implementors