Trait narrow::buffer::BufferType
source · pub trait BufferType {
type Buffer<T: FixedSize>: Buffer<T>;
}Expand description
A memory buffer type constructor for Arrow data.
The generic associated type constructor Self::Buffer defines the
Buffer type that stores FixedSize items.
Required Associated Types§
Object Safety§
This trait is not object safe.
Implementors§
source§impl BufferType for BufferBuilder
Available on crate feature arrow-rs only.
impl BufferType for BufferBuilder
Available on crate feature
arrow-rs only.type Buffer<T: FixedSize> = BufferBuilder<T>
source§impl BufferType for ScalarBuffer
Available on crate feature arrow-rs only.
impl BufferType for ScalarBuffer
Available on crate feature
arrow-rs only.