[][src]Struct arrow::array::FixedSizeListBuilder

pub struct FixedSizeListBuilder<T: ArrayBuilder> { /* fields omitted */ }

Array builder for ListArray

Implementations

impl<T: ArrayBuilder> FixedSizeListBuilder<T>[src]

pub fn new(values_builder: T, length: i32) -> Self[src]

Creates a new FixedSizeListBuilder from a given values array builder length is the number of values within each array

pub fn with_capacity(values_builder: T, length: i32, capacity: usize) -> Self[src]

Creates a new FixedSizeListBuilder from a given values array builder length is the number of values within each array capacity is the number of items to pre-allocate space for in this builder

impl<T: ArrayBuilder> FixedSizeListBuilder<T> where
    T: 'static, 
[src]

pub fn values(&mut self) -> &mut T[src]

Returns the child array builder as a mutable reference.

This mutable reference can be used to append values into the child array builder, but you must call append to delimit each distinct list value.

pub fn value_length(&self) -> i32[src]

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

Finish the current variable-length list array slot

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

Builds the FixedSizeListBuilder and reset this builder.

Trait Implementations

impl<T: ArrayBuilder> ArrayBuilder for FixedSizeListBuilder<T> where
    T: 'static, 
[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 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<T: Debug + ArrayBuilder> Debug for FixedSizeListBuilder<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for FixedSizeListBuilder<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for FixedSizeListBuilder<T> where
    T: Send
[src]

impl<T> Sync for FixedSizeListBuilder<T> where
    T: Sync
[src]

impl<T> Unpin for FixedSizeListBuilder<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for FixedSizeListBuilder<T> where
    T: UnwindSafe
[src]

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>,