pub struct DelayArcArg<'a, CellId, PinId> {
pub cell: &'a CellId,
pub arc: &'a CellDelayArc<PinId>,
}Expand description
Public exports. Bundled arguments for specifying delay arcs.
Fields§
§cell: &'a CellIdCell.
arc: &'a CellDelayArc<PinId>Specification of the arc.
Trait Implementations§
Source§impl<'a, CellId: Clone, PinId: Clone> Clone for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId: Clone, PinId: Clone> Clone for DelayArcArg<'a, CellId, PinId>
Source§fn clone(&self) -> DelayArcArg<'a, CellId, PinId>
fn clone(&self) -> DelayArcArg<'a, CellId, 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<'a, CellId: PartialEq, PinId: PartialEq> PartialEq for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId: PartialEq, PinId: PartialEq> PartialEq for DelayArcArg<'a, CellId, PinId>
Source§fn eq(&self, other: &DelayArcArg<'a, CellId, PinId>) -> bool
fn eq(&self, other: &DelayArcArg<'a, CellId, PinId>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a, CellId: Copy, PinId: Copy> Copy for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId: Eq, PinId: Eq> Eq for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId, PinId> StructuralPartialEq for DelayArcArg<'a, CellId, PinId>
Auto Trait Implementations§
impl<'a, CellId, PinId> Freeze for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId, PinId> RefUnwindSafe for DelayArcArg<'a, CellId, PinId>where
CellId: RefUnwindSafe,
PinId: RefUnwindSafe,
impl<'a, CellId, PinId> Send for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId, PinId> Sync for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId, PinId> Unpin for DelayArcArg<'a, CellId, PinId>
impl<'a, CellId, PinId> UnwindSafe for DelayArcArg<'a, CellId, PinId>where
CellId: RefUnwindSafe,
PinId: RefUnwindSafe,
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