Struct differential_dataflow::trace::wrappers::enter::TraceEnter
source · pub struct TraceEnter<K, V, T, R, Tr, TInner> { /* private fields */ }Expand description
Wrapper to provide trace to nested scope.
Implementations
sourceimpl<K, V, T, R, Tr, TInner> TraceEnter<K, V, T, R, Tr, TInner>where
Tr: TraceReader<K, V, T, R>,
T: Timestamp,
TInner: Refines<T> + Lattice,
impl<K, V, T, R, Tr, TInner> TraceEnter<K, V, T, R, Tr, TInner>where
Tr: TraceReader<K, V, T, R>,
T: Timestamp,
TInner: Refines<T> + Lattice,
Trait Implementations
sourceimpl<K, V, T, R, Tr, TInner> Clone for TraceEnter<K, V, T, R, Tr, TInner>where
Tr: TraceReader<K, V, T, R> + Clone,
impl<K, V, T, R, Tr, TInner> Clone for TraceEnter<K, V, T, R, Tr, TInner>where
Tr: TraceReader<K, V, T, R> + Clone,
sourceimpl<K, V, T, R, Tr, TInner> TraceReader<K, V, TInner, R> for TraceEnter<K, V, T, R, Tr, TInner>where
Tr: TraceReader<K, V, T, R>,
Tr::Batch: Clone,
K: 'static,
V: 'static,
T: Timestamp,
TInner: Refines<T> + Lattice,
R: 'static,
impl<K, V, T, R, Tr, TInner> TraceReader<K, V, TInner, R> for TraceEnter<K, V, T, R, Tr, TInner>where
Tr: TraceReader<K, V, T, R>,
Tr::Batch: Clone,
K: 'static,
V: 'static,
T: Timestamp,
TInner: Refines<T> + Lattice,
R: 'static,
type Batch = BatchEnter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Batch, TInner>
type Batch = BatchEnter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Batch, TInner>
The type of an immutable collection of updates.
type Cursor = CursorEnter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Cursor, TInner>
type Cursor = CursorEnter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Cursor, TInner>
The type used to enumerate the collections contents.
sourcefn map_batches<F: FnMut(&Self::Batch)>(&mut self, f: F)
fn map_batches<F: FnMut(&Self::Batch)>(&mut self, f: F)
Maps some logic across the batches the collection manages. Read more
sourcefn advance_by(&mut self, frontier: &[TInner])
fn advance_by(&mut self, frontier: &[TInner])
Advances the frontier of times the collection must be correctly accumulable through. Read more
sourcefn advance_frontier(&mut self) -> &[TInner] ⓘ
fn advance_frontier(&mut self) -> &[TInner] ⓘ
Reports the frontier from which all time comparisions should be accurate. Read more
sourcefn distinguish_since(&mut self, frontier: &[TInner])
fn distinguish_since(&mut self, frontier: &[TInner])
Advances the frontier that may be used in
cursor_through. Read moresourcefn distinguish_frontier(&mut self) -> &[TInner] ⓘ
fn distinguish_frontier(&mut self) -> &[TInner] ⓘ
Reports the frontier from which the collection may be subsetted. Read more
Auto Trait Implementations
impl<K, V, T, R, Tr, TInner> RefUnwindSafe for TraceEnter<K, V, T, R, Tr, TInner>where
K: RefUnwindSafe,
R: RefUnwindSafe,
T: RefUnwindSafe,
TInner: RefUnwindSafe,
Tr: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V, T, R, Tr, TInner> Send for TraceEnter<K, V, T, R, Tr, TInner>where
K: Send,
R: Send,
T: Send,
TInner: Send,
Tr: Send,
V: Send,
impl<K, V, T, R, Tr, TInner> Sync for TraceEnter<K, V, T, R, Tr, TInner>where
K: Sync,
R: Sync,
T: Sync,
TInner: Sync,
Tr: Sync,
V: Sync,
impl<K, V, T, R, Tr, TInner> Unpin for TraceEnter<K, V, T, R, Tr, TInner>where
K: Unpin,
R: Unpin,
T: Unpin,
TInner: Unpin,
Tr: Unpin,
V: Unpin,
impl<K, V, T, R, Tr, TInner> UnwindSafe for TraceEnter<K, V, T, R, Tr, TInner>where
K: UnwindSafe,
R: UnwindSafe,
T: UnwindSafe,
TInner: UnwindSafe,
Tr: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more