pub struct Structure {
pub name: String,
pub date_mod: Date,
pub date_acc: Date,
pub elements: Vec<Element>,
}
Expand description
A structure representiang a structure in a GDS file.
The structure consist of header informations and one or more elements. A structure is normally contained in a library.
Fields§
§name: String
Name of the structure.
date_mod: Date
Date of last modification.
date_acc: Date
Date of last access.
elements: Vec<Element>
Vector of the contained elements.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Structure
impl RefUnwindSafe for Structure
impl Send for Structure
impl Sync for Structure
impl Unpin for Structure
impl UnwindSafe for Structure
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