pub struct ObjectChunkedBuilder<T> { /* private fields */ }
Available on crate feature
object
only.Implementations§
Source§impl<T> ObjectChunkedBuilder<T>where
T: PolarsObject,
impl<T> ObjectChunkedBuilder<T>where
T: PolarsObject,
pub fn field(&self) -> &Field
pub fn new(name: PlSmallStr, capacity: usize) -> Self
Sourcepub fn append_value(&mut self, v: T)
pub fn append_value(&mut self, v: T)
Appends a value of type T
into the builder
Sourcepub fn append_null(&mut self)
pub fn append_null(&mut self)
Appends a null slot into the builder
pub fn append_value_from_any(&mut self, v: &dyn Any) -> PolarsResult<()>
pub fn append_option(&mut self, opt: Option<T>)
pub fn finish(self) -> ObjectChunked<T>
Trait Implementations§
Source§impl<T: PolarsObject> AnonymousObjectBuilder for ObjectChunkedBuilder<T>
impl<T: PolarsObject> AnonymousObjectBuilder for ObjectChunkedBuilder<T>
Source§unsafe fn from_chunks(self: Box<Self>, chunks: Vec<ArrayRef>) -> Series
unsafe fn from_chunks(self: Box<Self>, chunks: Vec<ArrayRef>) -> Series
§Safety
Expects ObjectArray<T>
arrays.
fn as_array_builder(self: Box<Self>) -> Box<dyn ArrayBuilder>
Source§fn append_null(&mut self)
fn append_null(&mut self)
Append a
null
value.Source§fn append_value(&mut self, value: &dyn Any)
fn append_value(&mut self, value: &dyn Any)
Source§fn to_series(&mut self) -> Series
fn to_series(&mut self) -> Series
Take the current state and materialize as a
Series
the builder should not be used after that.fn get_list_builder( &self, name: PlSmallStr, values_capacity: usize, list_capacity: usize, ) -> Box<dyn ListBuilderTrait>
fn append_option(&mut self, value: Option<&dyn Any>)
Source§impl<T: PolarsObject> ArrayBuilder for ObjectChunkedBuilder<T>
impl<T: PolarsObject> ArrayBuilder for ObjectChunkedBuilder<T>
fn dtype(&self) -> &ArrowDataType
fn reserve(&mut self, additional: usize)
Source§fn freeze_reset(&mut self) -> Box<dyn Array>
fn freeze_reset(&mut self) -> Box<dyn Array>
Return the built array and reset to an empty state.
Source§fn extend_nulls(&mut self, length: usize)
fn extend_nulls(&mut self, length: usize)
Extend this builder with the given number of null elements.
Source§fn subslice_extend(
&mut self,
other: &dyn Array,
start: usize,
length: usize,
_share: ShareStrategy,
)
fn subslice_extend( &mut self, other: &dyn Array, start: usize, length: usize, _share: ShareStrategy, )
Extends this builder with the contents of the given array subslice. May
panic if other does not match the dtype of this array.
Source§fn subslice_extend_repeated(
&mut self,
other: &dyn Array,
start: usize,
length: usize,
repeats: usize,
share: ShareStrategy,
)
fn subslice_extend_repeated( &mut self, other: &dyn Array, start: usize, length: usize, repeats: usize, share: ShareStrategy, )
The same as subslice_extend, but repeats the extension
repeats
times.Source§unsafe fn gather_extend(
&mut self,
other: &dyn Array,
idxs: &[IdxSize],
_share: ShareStrategy,
)
unsafe fn gather_extend( &mut self, other: &dyn Array, idxs: &[IdxSize], _share: ShareStrategy, )
Extends this builder with the contents of the given array at the given
indices. That is,
other[idxs[i]]
is appended to this array in order,
for each i=0..idxs.len(). May panic if other does not match the
dtype of this array. Read moreSource§fn opt_gather_extend(
&mut self,
other: &dyn Array,
idxs: &[IdxSize],
_share: ShareStrategy,
)
fn opt_gather_extend( &mut self, other: &dyn Array, idxs: &[IdxSize], _share: ShareStrategy, )
Extends this builder with the contents of the given array at the given
indices. That is,
other[idxs[i]]
is appended to this array in order,
for each i=0..idxs.len(). May panic if other does not match the
dtype of this array. Out-of-bounds indices are mapped to nulls.Source§impl<T> Default for ObjectChunkedBuilder<T>where
T: PolarsObject,
impl<T> Default for ObjectChunkedBuilder<T>where
T: PolarsObject,
Auto Trait Implementations§
impl<T> Freeze for ObjectChunkedBuilder<T>
impl<T> RefUnwindSafe for ObjectChunkedBuilder<T>where
T: RefUnwindSafe,
impl<T> Send for ObjectChunkedBuilder<T>where
T: Send,
impl<T> Sync for ObjectChunkedBuilder<T>where
T: Sync,
impl<T> Unpin for ObjectChunkedBuilder<T>where
T: Unpin,
impl<T> UnwindSafe for ObjectChunkedBuilder<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more