pub enum DataflowEvent<N, E, C> {
Visit(N),
Propagate {
edge: E,
class: EdgeClass<C>,
},
}Expand description
A stable observation from one fixpoint run.
Variants§
Visit(N)
A node was removed from the ordered worklist.
Propagate
Facts were propagated across an edge.
Trait Implementations§
Source§impl<N: Clone, E: Clone, C: Clone> Clone for DataflowEvent<N, E, C>
impl<N: Clone, E: Clone, C: Clone> Clone for DataflowEvent<N, E, C>
Source§fn clone(&self) -> DataflowEvent<N, E, C>
fn clone(&self) -> DataflowEvent<N, E, C>
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 moreimpl<N: Eq, E: Eq, C: Eq> Eq for DataflowEvent<N, E, C>
impl<N: PartialEq, E: PartialEq, C: PartialEq> StructuralPartialEq for DataflowEvent<N, E, C>
Auto Trait Implementations§
impl<N, E, C> Freeze for DataflowEvent<N, E, C>
impl<N, E, C> RefUnwindSafe for DataflowEvent<N, E, C>
impl<N, E, C> Send for DataflowEvent<N, E, C>
impl<N, E, C> Sync for DataflowEvent<N, E, C>
impl<N, E, C> Unpin for DataflowEvent<N, E, C>
impl<N, E, C> UnsafeUnpin for DataflowEvent<N, E, C>
impl<N, E, C> UnwindSafe for DataflowEvent<N, E, C>
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<T> FingerprintValue for Twhere
T: Hash,
impl<T> FingerprintValue for Twhere
T: Hash,
Source§fn incremental_fingerprint(&self) -> ValueFingerprint
fn incremental_fingerprint(&self) -> ValueFingerprint
Returns a compact value identity for incremental cutoff.