Struct polars::chunked_array::object::ListBooleanChunkedBuilder
source · [−]pub struct ListBooleanChunkedBuilder { /* private fields */ }
This is supported on crate feature
object
only.Implementations
sourceimpl ListBooleanChunkedBuilder
impl ListBooleanChunkedBuilder
pub fn new(
name: &str,
capacity: usize,
values_capacity: usize
) -> ListBooleanChunkedBuilder
pub fn append_iter<I>(&mut self, iter: I) where
I: Iterator<Item = Option<bool>> + TrustedLen,
Trait Implementations
sourceimpl ListBuilderTrait for ListBooleanChunkedBuilder
impl ListBuilderTrait for ListBooleanChunkedBuilder
fn append_opt_series(&mut self, opt_s: Option<&Series>)
fn append_null(&mut self)
fn append_series(&mut self, s: &Series)
fn finish(&mut self) -> ChunkedArray<ListType>
Auto Trait Implementations
impl RefUnwindSafe for ListBooleanChunkedBuilder
impl Send for ListBooleanChunkedBuilder
impl Sync for ListBooleanChunkedBuilder
impl Unpin for ListBooleanChunkedBuilder
impl UnwindSafe for ListBooleanChunkedBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more