Struct libreda_lefdef::export::DEFExportOptions
source · pub struct DEFExportOptions<C: L2NBase> {
pub export_nets: bool,
pub keep_unconnected_nets: bool,
pub export_components: bool,
pub layer_mapping: HashMap<C::LayerId, String>,
pub outline_layer: Option<C::LayerId>,
}Expand description
Control the export into DEF structures.
Fields§
§export_nets: boolEnable the export of nets. Default is true.
keep_unconnected_nets: boolAlso export nets which don’t connect to anything else.
export_components: boolExport components (cell instances). Default is true.
layer_mapping: HashMap<C::LayerId, String>Provide alternative names for layers. For all other layers
the default name defined in the [trait@L2NBase] type will be used.
outline_layer: Option<C::LayerId>Take the die-area from this layer. The layer must contain a single shape.