Trait libreda_db::technology::rules::MinimumWidth

source ·
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§

source

fn min_width( &self, layer: &Self::LayerId, shape_length: Option<Self::Distance>, ) -> Option<Self::Distance>

Minimal width of a shape with a certain length.

Object Safety§

This trait is not object safe.

Implementors§