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

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

Array builder for fixed-width primitive types

Methods

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 finish(&mut self) -> PrimitiveArray<T>[src]

Builds the PrimitiveArray and reset this builder.

Auto Trait Implementations

impl<T> Unpin for PrimitiveBuilder<T> where
    T: Unpin

impl<T> Sync for PrimitiveBuilder<T> where
    T: Sync

impl<T> Send for PrimitiveBuilder<T> where
    T: Send

impl<T> UnwindSafe for PrimitiveBuilder<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for PrimitiveBuilder<T> where
    T: RefUnwindSafe

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]