Struct differential_dataflow::trace::layers::ordered_leaf::OrderedLeafCursor[][src]

pub struct OrderedLeafCursor { /* fields omitted */ }

A cursor for walking through an unordered sequence of values.

This cursor does not support seek, though I'm not certain how to expose this.

Trait Implementations

impl Debug for OrderedLeafCursor
[src]

Formats the value using the given formatter. Read more

impl<K: Clone, R: Clone> Cursor<OrderedLeaf<K, R>> for OrderedLeafCursor
[src]

The type revealed by the cursor.

Reveals the current key.

Advances the cursor by one element.

Advances the cursor until the location where key would be expected.

Returns true if the cursor points at valid data. Returns false if the cursor is exhausted.

Rewinds the cursor to its initial state.

Repositions the cursor to a different range of values.

Auto Trait Implementations