pub trait Pdk: Installation + Send + Sync + Any {
type Layers: Layers;
const LAYOUT_DB_UNITS: Decimal;
}
Expand description
A process development kit.
The PDK’s Installation::post_install
hook should install
the PDK’s layer set using
install_pdk_layers
.
Required Associated Types§
Required Associated Constants§
sourceconst LAYOUT_DB_UNITS: Decimal
const LAYOUT_DB_UNITS: Decimal
The layout database unit for this PDK.
Object Safety§
This trait is not object safe.