pub struct NetlistLibConversion {
pub cells: HashMap<CellId, NetlistCellConversion>,
}
Expand description
Metadata associated with the conversion from a SCIR library to a netlist.
Fields§
§cells: HashMap<CellId, NetlistCellConversion>
Conversion metadata for each cell in the SCIR library.
Implementations§
Source§impl NetlistLibConversion
impl NetlistLibConversion
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new NetlistLibConversion
.
Trait Implementations§
Source§impl Clone for NetlistLibConversion
impl Clone for NetlistLibConversion
Source§fn clone(&self) -> NetlistLibConversion
fn clone(&self) -> NetlistLibConversion
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 moreSource§impl Debug for NetlistLibConversion
impl Debug for NetlistLibConversion
Source§impl Default for NetlistLibConversion
impl Default for NetlistLibConversion
Source§fn default() -> NetlistLibConversion
fn default() -> NetlistLibConversion
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NetlistLibConversion
impl RefUnwindSafe for NetlistLibConversion
impl Send for NetlistLibConversion
impl Sync for NetlistLibConversion
impl Unpin for NetlistLibConversion
impl UnwindSafe for NetlistLibConversion
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