Struct differential_dataflow::trace::wrappers::freeze::BatchFreeze[][src]

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

Wrapper to provide batch to nested scope.

Implementations

impl<K, V, T, R, B, F> BatchFreeze<K, V, T, R, B, F> where
    B: BatchReader<K, V, T, R>,
    T: Clone,
    F: Fn(&T) -> Option<T>, 
[src]

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

Makes a new batch wrapper

Trait Implementations

impl<K, V, T, R, B, F> BatchReader<K, V, T, R> for BatchFreeze<K, V, T, R, B, F> where
    B: BatchReader<K, V, T, R>,
    T: Clone,
    F: Fn(&T) -> Option<T>, 
[src]

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

The type used to enumerate the batch’s contents.

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

Auto Trait Implementations

impl<K, V, T, R, B, F> !RefUnwindSafe for BatchFreeze<K, V, T, R, B, F>

impl<K, V, T, R, B, F> !Send for BatchFreeze<K, V, T, R, B, F>

impl<K, V, T, R, B, F> !Sync for BatchFreeze<K, V, T, R, B, F>

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

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

Blanket Implementations

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

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.