pub struct DataflowCompletionProof<N, E, C, S> { /* private fields */ }Expand description
An immutable witness that a precise set of dataflow inputs reached a fixpoint.
The witness is deliberately content based: clean and incremental evaluation of the same inputs mint the same identity. Execution history and visit counts remain diagnostics and cannot change what the proof says.
Implementations§
Source§impl<N: Ord, E, C, S> DataflowCompletionProof<N, E, C, S>
impl<N: Ord, E, C, S> DataflowCompletionProof<N, E, C, S>
Sourcepub const fn identity(&self) -> ValueFingerprint
pub const fn identity(&self) -> ValueFingerprint
Returns the canonical semantic identity of this completed fixpoint.
Sourcepub fn observations(&self) -> &[(N, E, N)]
pub fn observations(&self) -> &[(N, E, N)]
Returns the exact dependency edges observed while reaching the fixpoint.
Sourcepub fn node_fingerprints(&self) -> &BTreeMap<N, ValueFingerprint>
pub fn node_fingerprints(&self) -> &BTreeMap<N, ValueFingerprint>
Returns the converged node fingerprints used for incremental cutoff.
Sourcepub const fn solution(&self) -> &DataflowSolution<N, E, C, S>
pub const fn solution(&self) -> &DataflowSolution<N, E, C, S>
Returns the proven solution.
Trait Implementations§
Source§impl<N: Clone, E: Clone, C: Clone, S: Clone> Clone for DataflowCompletionProof<N, E, C, S>
impl<N: Clone, E: Clone, C: Clone, S: Clone> Clone for DataflowCompletionProof<N, E, C, S>
Source§fn clone(&self) -> DataflowCompletionProof<N, E, C, S>
fn clone(&self) -> DataflowCompletionProof<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 DataflowCompletionProof<N, E, C, S>
Source§impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> PartialEq for DataflowCompletionProof<N, E, C, S>
impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> PartialEq for DataflowCompletionProof<N, E, C, S>
impl<N: PartialEq, E: PartialEq, C: PartialEq, S: PartialEq> StructuralPartialEq for DataflowCompletionProof<N, E, C, S>
Auto Trait Implementations§
impl<N, E, C, S> Freeze for DataflowCompletionProof<N, E, C, S>
impl<N, E, C, S> RefUnwindSafe for DataflowCompletionProof<N, E, C, S>
impl<N, E, C, S> Send for DataflowCompletionProof<N, E, C, S>
impl<N, E, C, S> Sync for DataflowCompletionProof<N, E, C, S>
impl<N, E, C, S> Unpin for DataflowCompletionProof<N, E, C, S>
impl<N, E, C, S> UnsafeUnpin for DataflowCompletionProof<N, E, C, S>
impl<N, E, C, S> UnwindSafe for DataflowCompletionProof<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