[][src]Struct differential_dataflow::trace::wrappers::filter::TraceFilter

pub struct TraceFilter<K, V, T, R, Tr, F> { /* fields omitted */ }

Wrapper to provide trace to nested scope.

Methods

impl<K, V, T, R, Tr, F> TraceFilter<K, V, T, R, Tr, F> where
    Tr: TraceReader<K, V, T, R>,
    T: Timestamp
[src]

pub fn make_from(trace: Tr, logic: Rc<F>) -> Self[src]

Makes a new trace wrapper

Trait Implementations

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, 
[src]

type Batch = BatchFilter<K, V, T, R, Tr::Batch, F>

The type of an immutable collection of updates.

type Cursor = CursorFilter<K, V, T, R, Tr::Cursor, F>

The type used to enumerate the collections contents.

fn cursor(
    &mut self
) -> (Self::Cursor, <Self::Cursor as Cursor<Key, Val, Time, R>>::Storage)
[src]

Provides a cursor over updates contained in the trace.

impl<K, V, T, R, Tr, F> Clone for TraceFilter<K, V, T, R, Tr, F> where
    Tr: TraceReader<K, V, T, R> + Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

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>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Data for T where
    T: 'static + Clone
[src]