Struct polars_arrow::builder::BooleanArrayBuilder [−][src]
pub struct BooleanArrayBuilder { /* fields omitted */ }
Expand description
Array builder for fixed-width primitive types
Implementations
impl BooleanArrayBuilder
[src]
impl BooleanArrayBuilder
[src]pub fn new_no_nulls(capacity: usize) -> Self
[src]
pub fn capacity(&self) -> usize
[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]
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]
pub fn append_null(&mut self)
[src]Appends a null slot into the builder
pub fn append_option(&mut self, v: Option<bool>)
[src]
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]
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]
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]
pub fn finish(&mut self) -> BooleanArray
[src]Builds the BooleanArray and reset this builder.
Trait Implementations
impl ArrayBuilder for BooleanArrayBuilder
[src]
impl ArrayBuilder for BooleanArrayBuilder
[src]fn as_any_mut(&mut self) -> &mut dyn Any
[src]
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]
fn into_box_any(self: Box<Self>) -> Box<dyn Any>
[src]Returns the boxed builder as a box of Any
.
Auto Trait Implementations
impl RefUnwindSafe for BooleanArrayBuilder
impl Send for BooleanArrayBuilder
impl Sync for BooleanArrayBuilder
impl Unpin for BooleanArrayBuilder
impl UnwindSafe for BooleanArrayBuilder
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,