pub trait HazardFilter {
// Required method
fn is_irrelevant(&self, entity: &HazardEntity) -> bool;
}
Expand description
Trait that allows for ignoring out specific hazards.
Enables querying the CDEngine
only for relevant hazards.
pub trait HazardFilter {
// Required method
fn is_irrelevant(&self, entity: &HazardEntity) -> bool;
}
Trait that allows for ignoring out specific hazards.
Enables querying the CDEngine
only for relevant hazards.