pub trait DynLintStore:
Any
+ DynSync
+ DynSend {
// Required method
fn lint_groups_iter(&self) -> Box<dyn Iterator<Item = LintGroup> + '_>;
}Required Methods§
Sourcefn lint_groups_iter(&self) -> Box<dyn Iterator<Item = LintGroup> + '_>
fn lint_groups_iter(&self) -> Box<dyn Iterator<Item = LintGroup> + '_>
Provides a way to access lint groups without depending on rustc_lint
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".