pub struct DataflowExplanation<N, E> { /* private fields */ }Expand description
A bounded explanation that cannot masquerade as complete after truncation.
Implementations§
Source§impl<N, E> DataflowExplanation<N, E>
impl<N, E> DataflowExplanation<N, E>
Sourcepub fn predecessors(&self) -> &[CausalPredecessor<N, E>]
pub fn predecessors(&self) -> &[CausalPredecessor<N, E>]
Returns the retained causal predecessors in deterministic discovery order.
Trait Implementations§
Source§impl<N: Clone, E: Clone> Clone for DataflowExplanation<N, E>
impl<N: Clone, E: Clone> Clone for DataflowExplanation<N, E>
Source§fn clone(&self) -> DataflowExplanation<N, E>
fn clone(&self) -> DataflowExplanation<N, E>
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> Eq for DataflowExplanation<N, E>
impl<N: PartialEq, E: PartialEq> StructuralPartialEq for DataflowExplanation<N, E>
Auto Trait Implementations§
impl<N, E> Freeze for DataflowExplanation<N, E>
impl<N, E> RefUnwindSafe for DataflowExplanation<N, E>where
N: RefUnwindSafe,
E: RefUnwindSafe,
impl<N, E> Send for DataflowExplanation<N, E>
impl<N, E> Sync for DataflowExplanation<N, E>
impl<N, E> Unpin for DataflowExplanation<N, E>
impl<N, E> UnsafeUnpin for DataflowExplanation<N, E>
impl<N, E> UnwindSafe for DataflowExplanation<N, E>where
N: UnwindSafe,
E: 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