pub trait LintPass {
// Required methods
fn name(&self) -> &'static str;
fn get_lints(&self) -> Vec<&'static Lint>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".