pub struct RuntimeCombObserver<A> {
pub site_id: u32,
pub activation_group: u32,
pub sensitivity: Vec<VarAtomBase<A>>,
pub written_inputs: Vec<A>,
}Expand description
Runtime activation recipe for one combinational event site.
Expression trees used to emit the event have already been lowered into SIR. The runtime only retains the persistent-state ranges needed to detect whether the corresponding combinational process must be observed again.
Fields§
§site_id: u32§activation_group: u32§sensitivity: Vec<VarAtomBase<A>>§written_inputs: Vec<A>Trait Implementations§
Source§impl<A: Clone> Clone for RuntimeCombObserver<A>
impl<A: Clone> Clone for RuntimeCombObserver<A>
Source§fn clone(&self) -> RuntimeCombObserver<A>
fn clone(&self) -> RuntimeCombObserver<A>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<A: Debug> Debug for RuntimeCombObserver<A>
impl<A: Debug> Debug for RuntimeCombObserver<A>
Source§impl<'de, A> Deserialize<'de> for RuntimeCombObserver<A>where
A: Deserialize<'de>,
impl<'de, A> Deserialize<'de> for RuntimeCombObserver<A>where
A: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<A> Freeze for RuntimeCombObserver<A>
impl<A> RefUnwindSafe for RuntimeCombObserver<A>
impl<A> Send for RuntimeCombObserver<A>
impl<A> Sync for RuntimeCombObserver<A>
impl<A> Unpin for RuntimeCombObserver<A>
impl<A> UnsafeUnpin for RuntimeCombObserver<A>
impl<A> UnwindSafe for RuntimeCombObserver<A>
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