Struct differential_dataflow::trace::wrappers::enter::BatchCursorEnter [] [src]

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

Wrapper to provide cursor to nested scope.

Trait Implementations

impl<K, V, T, R, TInner, B: BatchReader<K, V, T, R>> Cursor<K, V, Product<T, TInner>, R> for BatchCursorEnter<K, V, T, R, B, TInner> where
    T: Clone
[src]

Type the cursor addresses data in.

[src]

Indicates if the current key is valid. Read more

[src]

Indicates if the current value is valid. Read more

[src]

A reference to the current key. Asserts if invalid.

[src]

A reference to the current value. Asserts if invalid.

[src]

Applies logic to each pair of time and difference. Intended for mutation of the closure's scope. Read more

[src]

Advances the cursor to the next key. Indicates if the key is valid.

[src]

Advances the cursor to the specified key. Indicates if the key is valid.

[src]

Advances the cursor to the next value. Indicates if the value is valid.

[src]

Advances the cursor to the specified value. Indicates if the value is valid.

[src]

Rewinds the cursor to the first key.

[src]

Rewinds the cursor to the first value for current key.

[src]

Returns a reference to the current key, if valid.

[src]

Returns a reference to the current value, if valid.

Auto Trait Implementations

impl<K, V, T, R, B, TInner> Send for BatchCursorEnter<K, V, T, R, B, TInner> where
    K: Send,
    R: Send,
    T: Send,
    TInner: Send,
    V: Send,
    <B as BatchReader<K, V, T, R>>::Cursor: Send

impl<K, V, T, R, B, TInner> Sync for BatchCursorEnter<K, V, T, R, B, TInner> where
    K: Sync,
    R: Sync,
    T: Sync,
    TInner: Sync,
    V: Sync,
    <B as BatchReader<K, V, T, R>>::Cursor: Sync