[][src]Struct arrow::builder::BufferBuilder

pub struct BufferBuilder<T: ArrowPrimitiveType> { /* fields omitted */ }

Buffer builder with zero-copy build method

Trait Implementations

impl<T: ArrowPrimitiveType> BufferBuilderTrait<T> for BufferBuilder<T>
[src]

Creates a builder with a fixed initial capacity

Returns the number of array elements (slots) in the builder

Returns the current capacity of the builder (number of elements)

Reserves memory for n elements of type T.

Pushes a value into the builder, growing the internal buffer as needed.

Pushes a slice of type T, growing the internal buffer as needed.

Consumes this builder and returns an immutable Buffer.

impl BufferBuilderTrait<BooleanType> for BufferBuilder<BooleanType>
[src]

Creates a builder with a fixed initial capacity.

Pushes a value into the builder, growing the internal buffer as needed.

Pushes a slice of type T, growing the internal buffer as needed.

Reserves memory for n elements of type T.

Consumes this and returns an immutable Buffer.

Auto Trait Implementations

impl<T> Send for BufferBuilder<T> where
    T: Send

impl<T> Sync for BufferBuilder<T> where
    T: Sync

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]