pub struct OrderedLeaf<K, R> {
    pub vals: Vec<(K, R)>,
}
Expand description

A layer of unordered values.

Fields

vals: Vec<(K, R)>

Unordered values.

Trait Implementations

Write any additional information about &self beyond its binary representation. Read more
Reports the number of further bytes required to entomb self.
Recover any information for &mut self not evident from its binary representation. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
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
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
The type of item from which the type is constructed.
The type of cursor used to navigate the type.
The type used to merge instances of the type together.
The type used to assemble instances of the type from its Items.
The number of distinct keys, as distinct from the total number of tuples.
The total number of tuples in the collection.
Returns a cursor over a range of data, commonly used by others to restrict navigation to sub-collections. Read more
Returns a cursor capable of navigating the collection.
Merges two collections into a third. 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 resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.