[][src]Struct arrow::array::PrimitiveBuilder

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

Array builder for fixed-width primitive types

Implementations

impl<T: ArrowPrimitiveType> PrimitiveBuilder<T>[src]

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

Creates a new primitive array builder

pub fn capacity(&self) -> usize[src]

Returns the capacity of this builder measured in slots of type T

pub fn append_value(&mut self, v: T::Native) -> Result<()>[src]

Appends a value of type T into the builder

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

Appends a null slot into the builder

pub fn append_option(&mut self, v: Option<T::Native>) -> Result<()>[src]

Appends an Option<T> into the builder

pub fn append_slice(&mut self, v: &[T::Native]) -> Result<()>[src]

Appends a slice of type T into the builder

pub fn append_values(
    &mut self,
    values: &[T::Native],
    is_valid: &[bool]
) -> Result<()>
[src]

Appends values from a slice of type T and a validity boolean slice

pub fn finish(&mut self) -> PrimitiveArray<T>[src]

Builds the PrimitiveArray and reset this builder.

pub fn finish_dict(&mut self, values: ArrayRef) -> DictionaryArray<T>[src]

Builds the DictionaryArray and reset this builder.

Trait Implementations

impl<T: ArrowPrimitiveType> ArrayBuilder for PrimitiveBuilder<T>[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 + ArrowPrimitiveType> Debug for PrimitiveBuilder<T> where
    T::Native: Debug
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for PrimitiveBuilder<T> where
    <T as ArrowPrimitiveType>::Native: RefUnwindSafe
[src]

impl<T> Send for PrimitiveBuilder<T>[src]

impl<T> Sync for PrimitiveBuilder<T>[src]

impl<T> Unpin for PrimitiveBuilder<T> where
    <T as ArrowPrimitiveType>::Native: Unpin
[src]

impl<T> UnwindSafe for PrimitiveBuilder<T> where
    <T as ArrowPrimitiveType>::Native: 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>,