Struct libreda_sta::traits::cell_logic_model::Sequential
source · pub struct Sequential<PinId> {
pub clocked_on: Vec<BooleanExpr<PinId>>,
pub transparent_on: Vec<BooleanExpr<PinId>>,
}Expand description
Description of an output pin which is driven by a sequential circuit.
Fields§
§clocked_on: Vec<BooleanExpr<PinId>>The sequential output is updated when at least one
of the boolean expressions transitions from false to true.
transparent_on: Vec<BooleanExpr<PinId>>TODO: Latches:
Trait Implementations§
source§impl<PinId: Clone> Clone for Sequential<PinId>
impl<PinId: Clone> Clone for Sequential<PinId>
source§fn clone(&self) -> Sequential<PinId>
fn clone(&self) -> Sequential<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 Sequential<PinId>
impl<PinId: Debug> Debug for Sequential<PinId>
source§impl<PinId: Hash> Hash for Sequential<PinId>
impl<PinId: Hash> Hash for Sequential<PinId>
source§impl<PinId: PartialEq> PartialEq for Sequential<PinId>
impl<PinId: PartialEq> PartialEq for Sequential<PinId>
source§fn eq(&self, other: &Sequential<PinId>) -> bool
fn eq(&self, other: &Sequential<PinId>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<PinId: Eq> Eq for Sequential<PinId>
impl<PinId> StructuralPartialEq for Sequential<PinId>
Auto Trait Implementations§
impl<PinId> Freeze for Sequential<PinId>
impl<PinId> RefUnwindSafe for Sequential<PinId>where
PinId: RefUnwindSafe,
impl<PinId> Send for Sequential<PinId>where
PinId: Send,
impl<PinId> Sync for Sequential<PinId>where
PinId: Sync,
impl<PinId> Unpin for Sequential<PinId>where
PinId: Unpin,
impl<PinId> UnwindSafe for Sequential<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<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