pub struct OrdKeyBatch<K: Ord, T: Lattice, R> {
    pub layer: OrderedLayer<K, OrderedLeaf<T, R>>,
    pub desc: Description<T>,
}
Expand description

An immutable collection of update tuples, from a contiguous interval of logical times.

Fields

layer: OrderedLayer<K, OrderedLeaf<T, R>>

Where all the dataz is.

desc: Description<T>

Description of the update times this layer represents.

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
A type used to assemble batches from disordered updates.
A type used to assemble batches from ordered update sequences.
A type used to progressively merge batches.
Initiates the merging of consecutive batches. Read more
The type used to enumerate the batch’s contents.
Acquires a cursor to the batch’s contents.
The number of updates in the batch.
Describes the times of the updates in the batch.
All times in the batch are greater or equal to an element of lower.
All times in the batch are not greater or equal to any element of upper.
Allocates an empty builder.
Allocates an empty builder with some capacity.
Adds an element to the batch.
Completes building and returns the batch.
Adds an ordered sequence of elements to the batch.
Formats the value using the given formatter. Read more
Creates a new merger to merge the supplied batches.
Extracts merged results. Read more
Perform some amount of work, decrementing fuel. 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.