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§

source

type Buffer: ChunkBuffer<T>

Building buffer type

Required Methods§

source

fn build(&self) -> Self::Buffer

Creates a new ChunkBuffer trait instance.

Implementors§