Trait substrate::pdk::Pdk

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

source

type Layers: Layers

A set of layers used by the PDK.

Required Associated Constants§

source

const LAYOUT_DB_UNITS: Decimal

The layout database unit for this PDK.

Object Safety§

This trait is not object safe.

Implementors§