Struct differential_dataflow::trace::wrappers::frontier::BatchFrontier[][src]

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

Wrapper to provide batch to nested scope.

Implementations

impl<K, V, T, R, B> BatchFrontier<K, V, T, R, B> where
    B: BatchReader<K, V, T, R>,
    T: Timestamp + Lattice
[src]

pub fn make_from(batch: B, frontier: AntichainRef<'_, T>) -> Self[src]

Makes a new batch wrapper

Trait Implementations

impl<K, V, T, R, B> BatchReader<K, V, T, R> for BatchFrontier<K, V, T, R, B> where
    B: BatchReader<K, V, T, R>,
    T: Timestamp + Lattice
[src]

type Cursor = BatchCursorFrontier<K, V, T, R, B>

The type used to enumerate the batch’s contents.

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

Auto Trait Implementations

impl<K, V, T, R, B> RefUnwindSafe for BatchFrontier<K, V, T, R, B> where
    B: RefUnwindSafe,
    K: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe,
    V: RefUnwindSafe

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

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

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

impl<K, V, T, R, B> UnwindSafe for BatchFrontier<K, V, T, R, B> where
    B: UnwindSafe,
    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.