Struct polars_arrow::builder::BooleanArrayBuilder [−][src]
Array builder for fixed-width primitive types
Implementations
impl BooleanArrayBuilder[src]
pub fn new(capacity: usize) -> Self[src]
Creates a new primitive array builder
pub fn new_no_nulls(capacity: usize) -> Self[src]
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: bool)[src]
Appends a value of type T into the builder
pub fn append_null(&mut self)[src]
Appends a null slot into the builder
pub fn append_option(&mut self, v: Option<bool>)[src]
Appends an Option<T> into the builder
pub fn append_slice(&mut self, v: &[bool])[src]
Appends a slice of type T into the builder
pub fn append_values(&mut self, values: &[bool], is_valid: &[bool])[src]
Appends values from a slice of type T and a validity boolean slice
pub fn shrink_to_fit(&mut self)[src]
pub fn finish_with_null_buffer(&mut self, buffer: Buffer) -> BooleanArray[src]
pub fn finish(&mut self) -> BooleanArray[src]
Builds the BooleanArray and reset this builder.
Trait Implementations
impl ArrayBuilder for BooleanArrayBuilder[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 Debug for BooleanArrayBuilder[src]
Auto Trait Implementations
impl RefUnwindSafe for BooleanArrayBuilder[src]
impl Send for BooleanArrayBuilder[src]
impl Sync for BooleanArrayBuilder[src]
impl Unpin for BooleanArrayBuilder[src]
impl UnwindSafe for BooleanArrayBuilder[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,