pub trait Rule: Send + Sync {
// Required methods
fn id(&self) -> &str;
fn name(&self) -> &str;
fn severity(&self) -> Severity;
fn check(&self, schematic: &Schematic) -> Vec<Issue>;
}pub trait Rule: Send + Sync {
// Required methods
fn id(&self) -> &str;
fn name(&self) -> &str;
fn severity(&self) -> Severity;
fn check(&self, schematic: &Schematic) -> Vec<Issue>;
}