[][src]Struct arrow::array::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]

default fn new(capacity: usize) -> Self[src]

Creates a builder with a fixed initial capacity

fn len(&self) -> usize[src]

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

fn capacity(&self) -> usize[src]

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

default fn reserve(&mut self, n: usize) -> Result<()>[src]

Reserves memory for n elements of type T.

default fn append(&mut self, v: T::Native) -> Result<()>[src]

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

default fn append_slice(&mut self, slice: &[T::Native]) -> Result<()>[src]

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

default fn finish(&mut self) -> Buffer[src]

Reset this builder and returns an immutable Buffer.

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

fn new(capacity: usize) -> Self[src]

Creates a builder with a fixed initial capacity.

fn append(&mut self, v: bool) -> Result<()>[src]

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

fn append_slice(&mut self, slice: &[bool]) -> Result<()>[src]

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

fn reserve(&mut self, n: usize) -> Result<()>[src]

Reserves memory for n elements of type T.

fn finish(&mut self) -> Buffer[src]

Reset this builder and returns an immutable Buffer.

fn len(&self) -> usize[src]

fn capacity(&self) -> usize[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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

impl<T> FromCast<T> for T[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]