pub trait MinimumWidth: DistanceRuleBase {
// Required method
fn min_width(
&self,
layer: &Self::LayerId,
shape_length: Option<Self::Distance>,
) -> Option<Self::Distance>;
}Expand description
Minimum width rules.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".