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

pub struct CursorEnter<K, V, T, R, C: Cursor<K, V, T, R>, TInner> { /* fields omitted */ }

Wrapper to provide cursor to nested scope.

Trait Implementations

impl<K, V, T, R, C, TInner> Cursor<K, V, Product<T, TInner>, R> for CursorEnter<K, V, T, R, C, TInner> where
    C: Cursor<K, V, T, R>,
    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, C, TInner> Send for CursorEnter<K, V, T, R, C, TInner> where
    C: Send,
    K: Send,
    R: Send,
    T: Send,
    TInner: Send,
    V: Send

impl<K, V, T, R, C, TInner> Sync for CursorEnter<K, V, T, R, C, TInner> where
    C: Sync,
    K: Sync,
    R: Sync,
    T: Sync,
    TInner: Sync,
    V: Sync