pub trait MinimumWidth: DistanceRuleBase {
    fn min_width(
        &self,
        layer: &Self::LayerId,
        shape_length: Option<Self::Distance>
    ) -> Option<Self::Distance>; }
Expand description

Minimum width rules.

Required Methods

Minimal width of a shape with a certain length.

Implementors