Trait differential_dataflow::trace::cursor::CursorDebug[][src]

pub trait CursorDebug<K: Clone, V: Clone, T: Clone, R: Clone>: Cursor<K, V, T, R> {
    fn to_vec(&mut self, storage: &Self::Storage) -> Vec<((K, V), Vec<(T, R)>)> { ... }
}

Debugging and testing utilities for Cursor.

Provided methods

fn to_vec(&mut self, storage: &Self::Storage) -> Vec<((K, V), Vec<(T, R)>)>[src]

Rewinds the cursor and outputs its contents to a Vec

Loading content...

Implementors

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

Loading content...