pub trait LayerFamily: Copy {
    // Required methods
    fn new(ctx: &mut LayerContext) -> Self;
    fn info(&self) -> LayerFamilyInfo;
}
Expand description

A PDK layer family.

Required Methods§

source

fn new(ctx: &mut LayerContext) -> Self

Instantiates the identifiers and data contained within this layer family.

source

fn info(&self) -> LayerFamilyInfo

Converts a PDK layer family object to a general format that Substrate can use.

Object Safety§

This trait is not object safe.

Implementors§