[][src]Struct arrow::array::BinaryBuilder

pub struct BinaryBuilder { /* fields omitted */ }

Array builder for BinaryArray

Methods

impl BinaryBuilder[src]

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

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

pub fn append_value(&mut self, value: u8) -> Result<()>[src]

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

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

pub fn append_string(&mut self, value: &str) -> Result<()>[src]

Appends a &String or &str into the builder.

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

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

Finish the current variable-length list array slot.

pub fn append_null(&mut self) -> Result<()>[src]

Append a null value to the array.

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

Builds the BinaryArray and reset this builder.

Auto Trait Implementations

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]