pub struct OrderedCursor<L: Trie> {
    pub child: L::Cursor,
    /* private fields */
}
Expand description

A cursor with a child cursor that is updated as we move.

Fields

child: L::Cursor

The cursor for the trie layer below this one.

Trait Implementations

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.
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.