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

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

Wrapper to provide cursor to nested scope.

Trait Implementations

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

type Storage = BatchFreeze<K, V, T, R, B, F>

Type the cursor addresses data in.

Auto Trait Implementations

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

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

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

impl<K, V, T, R, B, F> Unpin for BatchCursorFreeze<K, V, T, R, B, F> where
    K: Unpin,
    R: Unpin,
    T: Unpin,
    V: Unpin,
    <B as BatchReader<K, V, T, R>>::Cursor: Unpin

impl<K, V, T, R, B, F> UnwindSafe for BatchCursorFreeze<K, V, T, R, B, F> where
    F: RefUnwindSafe,
    K: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe,
    V: UnwindSafe,
    <B as BatchReader<K, V, T, R>>::Cursor: 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<C, K, V, T, R> CursorDebug<K, V, T, R> for C where
    C: Cursor<K, V, T, R>,
    T: Clone,
    V: Clone,
    R: Clone,
    K: Clone
[src]

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

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

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.