[][src]Struct differential_dataflow::trace::cursor::cursor_pair::CursorPair

pub struct CursorPair<C1, C2> { /* fields omitted */ }

A cursor over the combined updates of two different cursors.

A CursorPair wraps two cursors over the same types of updates, and provides navigation through their merged updates.

Trait Implementations

impl<K, V, T, R, C1, C2> Cursor<K, V, T, R> for CursorPair<C1, C2> where
    K: Ord,
    V: Ord,
    C1: Cursor<K, V, T, R>,
    C2: Cursor<K, V, T, R>, 
[src]

type Storage = (C1::Storage, C2::Storage)

Type the cursor addresses data in.

Auto Trait Implementations

impl<C1, C2> Send for CursorPair<C1, C2> where
    C1: Send,
    C2: Send

impl<C1, C2> Sync for CursorPair<C1, C2> where
    C1: Sync,
    C2: Sync

impl<C1, C2> Unpin for CursorPair<C1, C2> where
    C1: Unpin,
    C2: Unpin

impl<C1, C2> UnwindSafe for CursorPair<C1, C2> where
    C1: UnwindSafe,
    C2: UnwindSafe

impl<C1, C2> RefUnwindSafe for CursorPair<C1, C2> where
    C1: RefUnwindSafe,
    C2: RefUnwindSafe

Blanket Implementations

impl<C, K, V, T, R> CursorDebug<K, V, T, R> for C where
    C: Cursor<K, V, T, R>,
    K: Clone,
    R: Clone,
    T: Clone,
    V: Clone
[src]

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

impl<T> From<T> for 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.

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

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

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