[][src]Struct arrow::builder::BinaryArrayBuilder

pub struct BinaryArrayBuilder { /* fields omitted */ }

Array builder for BinaryArray

Methods

impl BinaryArrayBuilder
[src]

Creates a new BinaryArrayBuilder, capacity is the number of bytes in the values array

Pushes a single byte value into the builder's values array.

Note, when pushing individual byte values you must call append to delimit each distinct list value.

Pushes a &String or &str into the builder.

Automatically calls the append method to delimit the string pushed in as a distinct array element.

Finish the current variable-length list array slot.

Trait Implementations

impl ArrayBuilder for BinaryArrayBuilder
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method.

Returns the number of array slots in the builder

Builds the BinaryArray

Auto Trait Implementations

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> Any for T where
    T: 'static + ?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.