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

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

Wrapper to provide batch to nested scope.

Methods

impl<K, V, T, R, B, F> BatchFilter<K, V, T, R, B, F> where
    B: BatchReader<K, V, T, R>,
    T: Timestamp
[src]

pub fn make_from(batch: B, logic: F) -> Self[src]

Makes a new batch wrapper

Trait Implementations

impl<K, V, T, R, B, F> BatchReader<K, V, T, R> for BatchFilter<K, V, T, R, B, F> where
    B: BatchReader<K, V, T, R>,
    T: Timestamp,
    F: FnMut(&K, &V) -> bool + Clone + 'static, 
[src]

type Cursor = BatchCursorFilter<K, V, T, R, B, F>

The type used to enumerate the batch's contents.

impl<K, V, T, R, B: Clone, F: Clone> Clone for BatchFilter<K, V, T, R, B, F>[src]

Auto Trait Implementations

impl<K, V, T, R, B, F> Send for BatchFilter<K, V, T, R, B, F> where
    B: Send,
    F: Send,
    K: Send,
    R: Send,
    T: Send,
    V: Send

impl<K, V, T, R, B, F> Sync for BatchFilter<K, V, T, R, B, F> where
    B: Sync,
    F: Sync,
    K: Sync,
    R: Sync,
    T: Sync,
    V: Sync

impl<K, V, T, R, B, F> Unpin for BatchFilter<K, V, T, R, B, F> where
    B: Unpin,
    F: Unpin,
    K: Unpin,
    R: Unpin,
    T: Unpin,
    V: Unpin

impl<K, V, T, R, B, F> UnwindSafe for BatchFilter<K, V, T, R, B, F> where
    B: UnwindSafe,
    F: UnwindSafe,
    K: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe,
    V: UnwindSafe

impl<K, V, T, R, B, F> RefUnwindSafe for BatchFilter<K, V, T, R, B, F> where
    B: RefUnwindSafe,
    F: RefUnwindSafe,
    K: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe,
    V: 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]