Trait ext_sort::buffer::ChunkBufferBuilder
source · pub trait ChunkBufferBuilder<T: Send>: Default {
type Buffer: ChunkBuffer<T>;
// Required method
fn build(&self) -> Self::Buffer;
}
Expand description
Limited buffer builder. Creates buffers using provided buffer parameters.
Required Associated Types§
sourcetype Buffer: ChunkBuffer<T>
type Buffer: ChunkBuffer<T>
Building buffer type
Required Methods§
sourcefn build(&self) -> Self::Buffer
fn build(&self) -> Self::Buffer
Creates a new ChunkBuffer
trait instance.