Struct libreda_sta::traits::cell_delay_model::CellDelayArc
source · pub struct CellDelayArc<PinId> {
pub input_pin: PinId,
pub output_pin: PinId,
}Expand description
A delay arc within a cell.
Fields§
§input_pin: PinIdInput pin of the delay arc.
output_pin: PinIdOutput pin of the delay arc.
Trait Implementations§
source§impl<PinId: Clone> Clone for CellDelayArc<PinId>
impl<PinId: Clone> Clone for CellDelayArc<PinId>
source§fn clone(&self) -> CellDelayArc<PinId>
fn clone(&self) -> CellDelayArc<PinId>
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<PinId: Debug> Debug for CellDelayArc<PinId>
impl<PinId: Debug> Debug for CellDelayArc<PinId>
source§impl<PinId: Hash> Hash for CellDelayArc<PinId>
impl<PinId: Hash> Hash for CellDelayArc<PinId>
source§impl<PinId: PartialEq> PartialEq<CellDelayArc<PinId>> for CellDelayArc<PinId>
impl<PinId: PartialEq> PartialEq<CellDelayArc<PinId>> for CellDelayArc<PinId>
source§fn eq(&self, other: &CellDelayArc<PinId>) -> bool
fn eq(&self, other: &CellDelayArc<PinId>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<PinId: Copy> Copy for CellDelayArc<PinId>
impl<PinId: Eq> Eq for CellDelayArc<PinId>
impl<PinId> StructuralEq for CellDelayArc<PinId>
impl<PinId> StructuralPartialEq for CellDelayArc<PinId>
Auto Trait Implementations§
impl<PinId> RefUnwindSafe for CellDelayArc<PinId>where PinId: RefUnwindSafe,
impl<PinId> Send for CellDelayArc<PinId>where PinId: Send,
impl<PinId> Sync for CellDelayArc<PinId>where PinId: Sync,
impl<PinId> Unpin for CellDelayArc<PinId>where PinId: Unpin,
impl<PinId> UnwindSafe for CellDelayArc<PinId>where PinId: UnwindSafe,
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.