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§

source

type Buffer<T: FixedSize>: Buffer<T>

A Buffer type for FixedSize items of type T.

Object Safety§

This trait is not object safe.

Implementors§