pub struct DataflowContinuation<N, E, C, S> { /* private fields */ }Expand description
A content-bound snapshot of an incomplete deterministic worklist solve.
Implementations§
Source§impl<N, E, C, S> DataflowContinuation<N, E, C, S>
impl<N, E, C, S> DataflowContinuation<N, E, C, S>
Sourcepub const fn token(&self) -> ContinuationToken
pub const fn token(&self) -> ContinuationToken
Returns the canonical core continuation handle bound to this snapshot.
Sourcepub const fn graph_fingerprint(&self) -> ValueFingerprint
pub const fn graph_fingerprint(&self) -> ValueFingerprint
Returns the graph fingerprint captured by this snapshot.
Trait Implementations§
Source§impl<N: Clone, E: Clone, C: Clone, S: Clone> Clone for DataflowContinuation<N, E, C, S>
impl<N: Clone, E: Clone, C: Clone, S: Clone> Clone for DataflowContinuation<N, E, C, S>
Source§fn clone(&self) -> DataflowContinuation<N, E, C, S>
fn clone(&self) -> DataflowContinuation<N, E, C, S>
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, S: Eq> Eq for DataflowContinuation<N, E, C, S>
Source§impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> PartialEq for DataflowContinuation<N, E, C, S>
impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> PartialEq for DataflowContinuation<N, E, C, S>
impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> StructuralPartialEq for DataflowContinuation<N, E, C, S>
Auto Trait Implementations§
impl<N, E, C, S> Freeze for DataflowContinuation<N, E, C, S>
impl<N, E, C, S> RefUnwindSafe for DataflowContinuation<N, E, C, S>
impl<N, E, C, S> Send for DataflowContinuation<N, E, C, S>
impl<N, E, C, S> Sync for DataflowContinuation<N, E, C, S>
impl<N, E, C, S> Unpin for DataflowContinuation<N, E, C, S>
impl<N, E, C, S> UnsafeUnpin for DataflowContinuation<N, E, C, S>
impl<N, E, C, S> UnwindSafe for DataflowContinuation<N, E, C, S>where
N: RefUnwindSafe + UnwindSafe,
S: RefUnwindSafe,
E: UnwindSafe + RefUnwindSafe,
C: 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