Struct differential_dataflow::trace::wrappers::filter::TraceFilter
source · pub struct TraceFilter<K, V, T, R, Tr, F> { /* private fields */ }Expand description
Wrapper to provide trace to nested scope.
Implementations
sourceimpl<K, V, T, R, Tr, F> TraceFilter<K, V, T, R, Tr, F>where
Tr: TraceReader<K, V, T, R>,
T: Timestamp,
impl<K, V, T, R, Tr, F> TraceFilter<K, V, T, R, Tr, F>where
Tr: TraceReader<K, V, T, R>,
T: Timestamp,
Trait Implementations
sourceimpl<K, V, T, R, Tr, F> Clone for TraceFilter<K, V, T, R, Tr, F>where
Tr: TraceReader<K, V, T, R> + Clone,
impl<K, V, T, R, Tr, F> Clone for TraceFilter<K, V, T, R, Tr, F>where
Tr: TraceReader<K, V, T, R> + Clone,
sourceimpl<K, V, T, R, Tr, F> TraceReader<K, V, T, R> for TraceFilter<K, V, T, R, Tr, F>where
Tr: TraceReader<K, V, T, R>,
Tr::Batch: Clone,
K: 'static,
V: 'static,
T: Timestamp,
R: 'static,
F: Fn(&K, &V) -> bool + 'static,
impl<K, V, T, R, Tr, F> TraceReader<K, V, T, R> for TraceFilter<K, V, T, R, Tr, F>where
Tr: TraceReader<K, V, T, R>,
Tr::Batch: Clone,
K: 'static,
V: 'static,
T: Timestamp,
R: 'static,
F: Fn(&K, &V) -> bool + 'static,
type Batch = BatchFilter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Batch, F>
type Batch = BatchFilter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Batch, F>
The type of an immutable collection of updates.
type Cursor = CursorFilter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Cursor, F>
type Cursor = CursorFilter<K, V, T, R, <Tr as TraceReader<K, V, T, R>>::Cursor, F>
The type used to enumerate the collections contents.
sourcefn map_batches<F2: FnMut(&Self::Batch)>(&mut self, f: F2)
fn map_batches<F2: FnMut(&Self::Batch)>(&mut self, f: F2)
Maps some logic across the batches the collection manages. Read more
sourcefn advance_by(&mut self, frontier: &[T])
fn advance_by(&mut self, frontier: &[T])
Advances the frontier of times the collection must be correctly accumulable through. Read more
sourcefn advance_frontier(&mut self) -> &[T] ⓘ
fn advance_frontier(&mut self) -> &[T] ⓘ
Reports the frontier from which all time comparisions should be accurate. Read more
sourcefn distinguish_since(&mut self, frontier: &[T])
fn distinguish_since(&mut self, frontier: &[T])
Advances the frontier that may be used in
cursor_through. Read moresourcefn distinguish_frontier(&mut self) -> &[T] ⓘ
fn distinguish_frontier(&mut self) -> &[T] ⓘ
Reports the frontier from which the collection may be subsetted. Read more
Auto Trait Implementations
impl<K, V, T, R, Tr, F> RefUnwindSafe for TraceFilter<K, V, T, R, Tr, F>where
F: RefUnwindSafe,
K: RefUnwindSafe,
R: RefUnwindSafe,
T: RefUnwindSafe,
Tr: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V, T, R, Tr, F> !Send for TraceFilter<K, V, T, R, Tr, F>
impl<K, V, T, R, Tr, F> !Sync for TraceFilter<K, V, T, R, Tr, F>
impl<K, V, T, R, Tr, F> Unpin for TraceFilter<K, V, T, R, Tr, F>where
K: Unpin,
R: Unpin,
T: Unpin,
Tr: Unpin,
V: Unpin,
impl<K, V, T, R, Tr, F> UnwindSafe for TraceFilter<K, V, T, R, Tr, F>where
F: RefUnwindSafe,
K: UnwindSafe,
R: UnwindSafe,
T: 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