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

Rewinds the cursor and outputs its contents to a Vec

Implementors