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

pub struct TraceFilter<Tr, F> { /* fields omitted */ }

Wrapper to provide trace to nested scope.

Methods

impl<Tr, F> TraceFilter<Tr, F> where
    Tr: TraceReader,
    Tr::Time: Timestamp
[src]

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

Makes a new trace wrapper

Trait Implementations

impl<Tr, F> TraceReader for TraceFilter<Tr, F> where
    Tr: TraceReader,
    Tr::Batch: Clone,
    Tr::Key: 'static,
    Tr::Val: 'static,
    Tr::Time: Timestamp,
    Tr::R: 'static,
    F: FnMut(&Tr::Key, &Tr::Val) -> bool + Clone + 'static, 
[src]

type Key = Tr::Key

Key by which updates are indexed.

type Val = Tr::Val

Values associated with keys.

type Time = Tr::Time

Timestamps associated with updates

type R = Tr::R

Associated update.

type Batch = BatchFilter<Tr::Key, Tr::Val, Tr::Time, Tr::R, Tr::Batch, F>

The type of an immutable collection of updates.

type Cursor = CursorFilter<Tr::Key, Tr::Val, Tr::Time, Tr::R, Tr::Cursor, F>

The type used to enumerate the collections contents.

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

Auto Trait Implementations

impl<Tr, F> Send for TraceFilter<Tr, F> where
    F: Send,
    Tr: Send

impl<Tr, F> Sync for TraceFilter<Tr, F> where
    F: Sync,
    Tr: Sync

impl<Tr, F> Unpin for TraceFilter<Tr, F> where
    F: Unpin,
    Tr: Unpin

impl<Tr, F> UnwindSafe for TraceFilter<Tr, F> where
    F: UnwindSafe,
    Tr: UnwindSafe

impl<Tr, F> RefUnwindSafe for TraceFilter<Tr, F> where
    F: RefUnwindSafe,
    Tr: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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