Enum libreda_lefdef::export::LefDefExportError
source · pub enum LefDefExportError {
NameAlreadyExists(String),
UnknownLayerName,
Other(String),
}Expand description
Error type returned from LEF/DEF output functions.
Variants§
NameAlreadyExists(String)
A named entry such as a MACRO already exists in the LEF or DEF structure.
UnknownLayerName
A layer in the database has no name defined in the name-mapping, hence cannot be written to LEF or DEF.
Other(String)
Unspecified error.
Trait Implementations§
source§impl Clone for LefDefExportError
impl Clone for LefDefExportError
source§fn clone(&self) -> LefDefExportError
fn clone(&self) -> LefDefExportError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more