pub struct FixedSizeListType {}Available on crate feature
dtype-array only.Trait Implementations§
Source§impl ChunkExpandAtIndex<FixedSizeListType> for ArrayChunked
impl ChunkExpandAtIndex<FixedSizeListType> for ArrayChunked
Source§fn new_from_index(&self, index: usize, length: usize) -> ArrayChunked
fn new_from_index(&self, index: usize, length: usize) -> ArrayChunked
Create a new ChunkedArray filled with values at that index.
Source§impl ChunkShift<FixedSizeListType> for ArrayChunked
impl ChunkShift<FixedSizeListType> for ArrayChunked
Source§impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ArrayChunked
impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ArrayChunked
Source§fn shift_and_fill(
&self,
periods: i64,
fill_value: Option<&Series>,
) -> ArrayChunked
fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series>, ) -> ArrayChunked
Shift the values by a given period and fill the parts that will be empty due to this operation
with
fill_value.Source§impl NumOpsDispatchInner for FixedSizeListType
impl NumOpsDispatchInner for FixedSizeListType
fn add_to(lhs: &ArrayChunked, rhs: &Series) -> PolarsResult<Series>
fn subtract(lhs: &ArrayChunked, rhs: &Series) -> PolarsResult<Series>
fn multiply(lhs: &ArrayChunked, rhs: &Series) -> PolarsResult<Series>
fn divide(lhs: &ArrayChunked, rhs: &Series) -> PolarsResult<Series>
fn remainder(lhs: &ArrayChunked, rhs: &Series) -> PolarsResult<Series>
Source§impl PolarsDataType for FixedSizeListType
impl PolarsDataType for FixedSizeListType
type Physical<'a> = Box<dyn Array>
type OwnedPhysical = Box<dyn Array>
type ZeroablePhysical<'a> = Option<Box<dyn Array>>
type Array = FixedSizeListArray
type IsNested = TrueT
type HasViews = FalseT
type IsStruct = FalseT
type IsObject = FalseT
Source§fn get_static_dtype() -> DataType
fn get_static_dtype() -> DataType
Returns the DataType variant associated with this PolarsDataType.
Not implemented for types whose DataTypes have parameters.
Source§impl PolarsPhysicalType for FixedSizeListType
impl PolarsPhysicalType for FixedSizeListType
fn ca_into_series(ca: ChunkedArray<Self>) -> Series
Auto Trait Implementations§
impl Freeze for FixedSizeListType
impl RefUnwindSafe for FixedSizeListType
impl Send for FixedSizeListType
impl Sync for FixedSizeListType
impl Unpin for FixedSizeListType
impl UnwindSafe for FixedSizeListType
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