[][src]Struct arrow::array::LargeStringBuilder

pub struct LargeStringBuilder { /* fields omitted */ }

Implementations

impl LargeStringBuilder[src]

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

Creates a new StringBuilder, capacity is the number of bytes of string data to pre-allocate space for in this builder

pub fn with_capacity(item_capacity: usize, data_capacity: usize) -> Self[src]

Creates a new StringBuilder, data_capacity is the number of bytes of string data to pre-allocate space for in this builder item_capacity is the number of items to pre-allocate space for in this builder

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

Appends a string 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) -> LargeStringArray[src]

Builds the LargeStringArray and reset this builder.

Trait Implementations

impl ArrayBuilder for LargeStringBuilder[src]

fn as_any(&self) -> &dyn Any[src]

Returns the builder as a non-mutable Any reference.

fn as_any_mut(&mut self) -> &mut dyn Any[src]

Returns the builder as a mutable Any reference.

fn append_data(&mut self, data: &[ArrayDataRef]) -> Result<()>[src]

Appends data from other arrays into the builder

This is most useful when concatenating arrays of the same type into a builder.

fn data_type(&self) -> DataType[src]

Returns the data type of the builder

This is used for validating array data types in append_data

fn into_box_any(self: Box<Self>) -> Box<dyn Any>[src]

Returns the boxed builder as a box of Any.

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

Returns the number of array slots in the builder

fn is_empty(&self) -> bool[src]

Returns whether the number of array slots is zero

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

Builds the array and reset this builder.

impl Debug for LargeStringBuilder[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,