Trait substrate::pdk::layers::LayerFamily
source · pub trait LayerFamily: Copy {
// Required methods
fn new(ctx: &mut LayerContext) -> Self;
fn info(&self) -> LayerFamilyInfo;
}
Expand description
A PDK layer family.
Required Methods§
sourcefn new(ctx: &mut LayerContext) -> Self
fn new(ctx: &mut LayerContext) -> Self
Instantiates the identifiers and data contained within this layer family.
sourcefn info(&self) -> LayerFamilyInfo
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.