pub struct NetlistCellConversion {
pub instances: HashMap<InstanceId, ArcStr>,
}
Expand description
Metadata associated with the conversion from a SCIR cell to a netlisted subcircuit.
Fields§
§instances: HashMap<InstanceId, ArcStr>
The netlisted names of SCIR instances.
Implementations§
Source§impl NetlistCellConversion
impl NetlistCellConversion
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new NetlistCellConversion
.
Trait Implementations§
Source§impl Clone for NetlistCellConversion
impl Clone for NetlistCellConversion
Source§fn clone(&self) -> NetlistCellConversion
fn clone(&self) -> NetlistCellConversion
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 NetlistCellConversion
impl Debug for NetlistCellConversion
Source§impl Default for NetlistCellConversion
impl Default for NetlistCellConversion
Source§fn default() -> NetlistCellConversion
fn default() -> NetlistCellConversion
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NetlistCellConversion
impl RefUnwindSafe for NetlistCellConversion
impl Send for NetlistCellConversion
impl Sync for NetlistCellConversion
impl Unpin for NetlistCellConversion
impl UnwindSafe for NetlistCellConversion
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