pub enum DataflowProgress<N, E, C, S> {
Complete(DataflowSolution<N, E, C, S>),
Suspended(DataflowContinuation<N, E, C, S>),
}Expand description
Outcome of a resumable solve step.
Variants§
Complete(DataflowSolution<N, E, C, S>)
The worklist converged.
Suspended(DataflowContinuation<N, E, C, S>)
Work remains and is captured without loss.
Trait Implementations§
Source§impl<N: Clone, E: Clone, C: Clone, S: Clone> Clone for DataflowProgress<N, E, C, S>
impl<N: Clone, E: Clone, C: Clone, S: Clone> Clone for DataflowProgress<N, E, C, S>
Source§fn clone(&self) -> DataflowProgress<N, E, C, S>
fn clone(&self) -> DataflowProgress<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 DataflowProgress<N, E, C, S>
Source§impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> PartialEq for DataflowProgress<N, E, C, S>
impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> PartialEq for DataflowProgress<N, E, C, S>
impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> StructuralPartialEq for DataflowProgress<N, E, C, S>
Auto Trait Implementations§
impl<N, E, C, S> Freeze for DataflowProgress<N, E, C, S>
impl<N, E, C, S> RefUnwindSafe for DataflowProgress<N, E, C, S>
impl<N, E, C, S> Send for DataflowProgress<N, E, C, S>
impl<N, E, C, S> Sync for DataflowProgress<N, E, C, S>
impl<N, E, C, S> Unpin for DataflowProgress<N, E, C, S>
impl<N, E, C, S> UnsafeUnpin for DataflowProgress<N, E, C, S>
impl<N, E, C, S> UnwindSafe for DataflowProgress<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