Struct libreda_lefdef::import::DEFImportOptions
source · pub struct DEFImportOptions<C: L2NEdit> {
pub lef_import_options: LEFImportOptions<C>,
pub import_blockages: bool,
pub blockages_suffix: String,
pub import_nets: bool,
pub import_wiring: bool,
pub import_fixed_vias: bool,
pub skip_existing_vias: bool,
}Expand description
Control the import of DEF structures.
Fields§
§lef_import_options: LEFImportOptions<C>Options for importing the LEF.
import_blockages: boolEnable import of blockage shapes.
blockages_suffix: StringAppend this string to layer names of blockages. Default is “.BLOCKAGE”.
import_nets: boolEnable import of nets.
import_wiring: boolEnable import of routes.
import_fixed_vias: boolEnable import of fixed via definitions. Vias are imported as cells.
skip_existing_vias: boolIf true: If a via name already exists, don’t import it. If false: Return an error if the via name already exists.
Trait Implementations§
Auto Trait Implementations§
impl<C> Freeze for DEFImportOptions<C>
impl<C> RefUnwindSafe for DEFImportOptions<C>
impl<C> Send for DEFImportOptions<C>
impl<C> Sync for DEFImportOptions<C>
impl<C> Unpin for DEFImportOptions<C>
impl<C> UnwindSafe for DEFImportOptions<C>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more