pub type ColBuilder<K, V, T, R> = RcBuilder<RhhValBuilder<TStack<((K, V), T, R)>, TimelyStack<((K, V), T, R)>>>;
Expand description
A builder for columnar storage.
Aliased Type§
struct ColBuilder<K, V, T, R> { /* private fields */ }
Trait Implementations
Source§impl<B: Builder> Builder for RcBuilder<B>
impl<B: Builder> Builder for RcBuilder<B>
Functionality for building batches from ordered update sequences.
Source§fn with_capacity(keys: usize, vals: usize, upds: usize) -> Self
fn with_capacity(keys: usize, vals: usize, upds: usize) -> Self
Allocates an empty builder with capacity for the specified keys, values, and updates. Read more
Source§fn done(self, description: Description<Self::Time>) -> Rc<B::Output>
fn done(self, description: Description<Self::Time>) -> Rc<B::Output>
Completes building and returns the batch.