Struct arrow::array::PrimitiveBuilder [−][src]
pub struct PrimitiveBuilder<T: ArrowPrimitiveType> { /* fields omitted */ }
Array builder for fixed-width primitive types
Implementations
impl<T: ArrowPrimitiveType> PrimitiveBuilder<T>[src]
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]
&mut self,
values: &[T::Native],
is_valid: &[bool]
) -> Result<()>
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]
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.
Auto Trait Implementations
impl<T> RefUnwindSafe for PrimitiveBuilder<T> where
<T as ArrowPrimitiveType>::Native: RefUnwindSafe,
impl<T> RefUnwindSafe for PrimitiveBuilder<T> where
<T as ArrowPrimitiveType>::Native: RefUnwindSafe, impl<T> Send for PrimitiveBuilder<T>
impl<T> Send for PrimitiveBuilder<T>impl<T> Sync for PrimitiveBuilder<T>
impl<T> Sync for PrimitiveBuilder<T>impl<T> Unpin for PrimitiveBuilder<T> where
<T as ArrowPrimitiveType>::Native: Unpin,
impl<T> Unpin for PrimitiveBuilder<T> where
<T as ArrowPrimitiveType>::Native: Unpin, impl<T> UnwindSafe for PrimitiveBuilder<T> where
<T as ArrowPrimitiveType>::Native: UnwindSafe,
impl<T> UnwindSafe for PrimitiveBuilder<T> where
<T as ArrowPrimitiveType>::Native: UnwindSafe,