Trait differential_dataflow::collection::trace::TraceRef [] [src]

pub trait TraceRef<'a, K, T: 'a, V: 'a> {
    type VIterator: Iterator<Item = (&'a V, i32)> + Clone + 'a;
    type TIterator: Iterator<Item = (&'a T, Self::VIterator)> + Clone + 'a;
    fn trace(self, key: &K) -> Self::TIterator;
}

A reference to a Trace with a bound lifetime 'a.

Associated Types

Iterator over references to values.

Iterator over times and VIterators.

Required Methods

Iterates over differences associated with the key.

Implementors