pub struct ObjectType<T>(/* private fields */);
Available on crate feature
object
only.Trait Implementations§
Source§impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
Source§fn new_from_index(
&self,
index: usize,
length: usize,
) -> ChunkedArray<ObjectType<T>>
fn new_from_index( &self, index: usize, length: usize, ) -> ChunkedArray<ObjectType<T>>
Create a new ChunkedArray filled with values at that index.
Source§impl<T> ChunkFilter<ObjectType<T>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
impl<T> ChunkFilter<ObjectType<T>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
Source§fn filter(
&self,
filter: &ChunkedArray<BooleanType>,
) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>
fn filter( &self, filter: &ChunkedArray<BooleanType>, ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>
Filter values in the ChunkedArray with a boolean mask. Read more
Source§impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
fn shift(&self, periods: i64) -> ChunkedArray<ObjectType<T>>
Source§impl<T> ChunkShiftFill<ObjectType<T>, Option<ObjectType<T>>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
impl<T> ChunkShiftFill<ObjectType<T>, Option<ObjectType<T>>> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
Source§fn shift_and_fill(
&self,
_periods: i64,
_fill_value: Option<ObjectType<T>>,
) -> ChunkedArray<ObjectType<T>>
fn shift_and_fill( &self, _periods: i64, _fill_value: Option<ObjectType<T>>, ) -> ChunkedArray<ObjectType<T>>
Shift the values by a given period and fill the parts that will be empty due to this operation
with
fill_value
.Source§impl<T> NewChunkedArray<ObjectType<T>, T> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
impl<T> NewChunkedArray<ObjectType<T>, T> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
Source§fn from_iter_values(
name: PlSmallStr,
it: impl Iterator<Item = T>,
) -> ChunkedArray<ObjectType<T>>
fn from_iter_values( name: PlSmallStr, it: impl Iterator<Item = T>, ) -> ChunkedArray<ObjectType<T>>
Create a new ChunkedArray from an iterator.
fn from_slice(name: PlSmallStr, v: &[T]) -> ChunkedArray<ObjectType<T>>
fn from_slice_options( name: PlSmallStr, opt_v: &[Option<T>], ) -> ChunkedArray<ObjectType<T>>
Source§fn from_iter_options(
name: PlSmallStr,
it: impl Iterator<Item = Option<T>>,
) -> ChunkedArray<ObjectType<T>>
fn from_iter_options( name: PlSmallStr, it: impl Iterator<Item = Option<T>>, ) -> ChunkedArray<ObjectType<T>>
Create a new ChunkedArray from an iterator.
Source§impl<T> PolarsDataType for ObjectType<T>where
T: PolarsObject,
impl<T> PolarsDataType for ObjectType<T>where
T: PolarsObject,
Auto Trait Implementations§
impl<T> Freeze for ObjectType<T>where
T: Freeze,
impl<T> RefUnwindSafe for ObjectType<T>where
T: RefUnwindSafe,
impl<T> Send for ObjectType<T>where
T: Send,
impl<T> Sync for ObjectType<T>where
T: Sync,
impl<T> Unpin for ObjectType<T>where
T: Unpin,
impl<T> UnwindSafe for ObjectType<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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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