pub trait Lint {
// Required methods
fn id(&self) -> &'static str;
fn severity(&self) -> Severity;
fn description(&self) -> &'static str;
fn help(&self) -> &'static str;
}
pub trait Lint {
// Required methods
fn id(&self) -> &'static str;
fn severity(&self) -> Severity;
fn description(&self) -> &'static str;
fn help(&self) -> &'static str;
}