pub struct CellDelayArc<PinId> {
pub input_pin: (PinId, RiseFall),
pub output_pin: (PinId, RiseFall),
}Expand description
A delay arc within a cell.
Fields§
§input_pin: (PinId, RiseFall)Input pin of the delay arc and it’s signal edge polarity.
output_pin: (PinId, RiseFall)Output pin of the delay arc and it’s signal edge polarity.
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 duplicate 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 for CellDelayArc<PinId>
impl<PinId: PartialEq> PartialEq for CellDelayArc<PinId>
impl<PinId: Copy> Copy for CellDelayArc<PinId>
impl<PinId: Eq> Eq for CellDelayArc<PinId>
impl<PinId> StructuralPartialEq for CellDelayArc<PinId>
Auto Trait Implementations§
impl<PinId> Freeze for CellDelayArc<PinId>where
PinId: Freeze,
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<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more