Struct polars::chunked_array::builder::ListUtf8ChunkedBuilder
source · [−]pub struct ListUtf8ChunkedBuilder { /* private fields */ }
Implementations
sourceimpl ListUtf8ChunkedBuilder
impl ListUtf8ChunkedBuilder
pub fn new(
name: &str,
capacity: usize,
values_capacity: usize
) -> ListUtf8ChunkedBuilder
pub fn append_trusted_len_iter<'a, I>(&mut self, iter: I) where
I: Iterator<Item = Option<&'a str>> + TrustedLen,
pub fn append_values_iter<'a, I>(&mut self, iter: I) where
I: Iterator<Item = &'a str>,
Trait Implementations
sourceimpl ListBuilderTrait for ListUtf8ChunkedBuilder
impl ListBuilderTrait for ListUtf8ChunkedBuilder
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 ListUtf8ChunkedBuilder
impl Send for ListUtf8ChunkedBuilder
impl Sync for ListUtf8ChunkedBuilder
impl Unpin for ListUtf8ChunkedBuilder
impl UnwindSafe for ListUtf8ChunkedBuilder
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