pub struct CombObserver<A> {Show 14 fields
pub site_id: u32,
pub activation_group: u32,
pub guard: Option<NodeId>,
pub args: Vec<NodeId>,
pub loop_runner: Option<NodeId>,
pub sensitivity: Vec<VarAtomBase<A>>,
pub local_inputs: Vec<(A, NodeId)>,
pub observed_inputs: Vec<VarAtomBase<A>>,
pub position_inputs: Vec<VarAtomBase<A>>,
pub preceding_writes: Vec<VarAtomBase<A>>,
pub written_before: Vec<VarAtomBase<A>>,
pub written_input_atoms: Vec<VarAtomBase<A>>,
pub written_inputs: Vec<A>,
pub captured_in_loop: bool,
}Expand description
Source-independent combinational observation recipe retained until SIR construction.
Fields§
§site_id: u32§activation_group: u32§guard: Option<NodeId>§args: Vec<NodeId>§loop_runner: Option<NodeId>§sensitivity: Vec<VarAtomBase<A>>§local_inputs: Vec<(A, NodeId)>§observed_inputs: Vec<VarAtomBase<A>>§position_inputs: Vec<VarAtomBase<A>>§preceding_writes: Vec<VarAtomBase<A>>§written_before: Vec<VarAtomBase<A>>§written_input_atoms: Vec<VarAtomBase<A>>§written_inputs: Vec<A>§captured_in_loop: boolTrait Implementations§
Source§impl<A: Clone> Clone for CombObserver<A>
impl<A: Clone> Clone for CombObserver<A>
Source§fn clone(&self) -> CombObserver<A>
fn clone(&self) -> CombObserver<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 moreAuto Trait Implementations§
impl<A> Freeze for CombObserver<A>
impl<A> RefUnwindSafe for CombObserver<A>
impl<A> Send for CombObserver<A>
impl<A> Sync for CombObserver<A>
impl<A> Unpin for CombObserver<A>
impl<A> UnsafeUnpin for CombObserver<A>
impl<A> UnwindSafe for CombObserver<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