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

Default width rules.

Required Methods

Default width of a wire segment of a certain length.

Implementors