[][src]Struct arrow::builder::Builder

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

Buffer builder with zero-copy build method

Methods

impl<T> Builder<T> where
    T: ArrowPrimitiveType
[src]

Creates a builder with a default capacity

Creates a builder with a fixed capacity

Get the number of elements in the builder

Get the capacity of the builder (number of elements)

Get the internal byte-aligned memory buffer as a mutable slice

Override the length

Push a value into the builder, growing the internal buffer as needed

Set a value at a slot in the allocated memory without adjusting the length

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

Reserve memory for n elements of type T

Build a Buffer from the existing memory

Trait Implementations

impl<T> Drop for Builder<T> where
    T: ArrowPrimitiveType
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl<T> !Send for Builder<T>

impl<T> !Sync for Builder<T>

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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.

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

Performs the conversion.

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

Mutably borrows from an owned value. Read more