pub struct ListType {}
Trait Implementations§
Source§impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>
impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>
Source§fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>
fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>
Create a new ChunkedArray filled with values at that index.
Source§impl ChunkShift<ListType> for ChunkedArray<ListType>
impl ChunkShift<ListType> for ChunkedArray<ListType>
Source§impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>
impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>
Source§fn shift_and_fill(
&self,
periods: i64,
fill_value: Option<&Series>,
) -> ChunkedArray<ListType>
fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series>, ) -> ChunkedArray<ListType>
Shift the values by a given period and fill the parts that will be empty due to this operation
with
fill_value
.Source§impl<'de> Deserialize<'de> for ListType
impl<'de> Deserialize<'de> for ListType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T> NamedFrom<T, ListType> for Series
impl<T> NamedFrom<T, ListType> for Series
Source§fn new(name: PlSmallStr, s: T) -> Series
fn new(name: PlSmallStr, s: T) -> Series
Initialize by name and values.
Source§impl NumOpsDispatchInner for ListType
impl NumOpsDispatchInner for ListType
fn add_to( lhs: &ChunkedArray<ListType>, rhs: &Series, ) -> Result<Series, PolarsError>
fn subtract( lhs: &ChunkedArray<ListType>, rhs: &Series, ) -> Result<Series, PolarsError>
fn multiply( lhs: &ChunkedArray<ListType>, rhs: &Series, ) -> Result<Series, PolarsError>
fn divide( lhs: &ChunkedArray<ListType>, rhs: &Series, ) -> Result<Series, PolarsError>
fn remainder( lhs: &ChunkedArray<ListType>, rhs: &Series, ) -> Result<Series, PolarsError>
Source§impl PolarsDataType for ListType
impl PolarsDataType for ListType
type Physical<'a> = Box<dyn Array>
type OwnedPhysical = Box<dyn Array>
type ZeroablePhysical<'a> = Option<Box<dyn Array>>
type Array = ListArray<i64>
type IsNested = TrueT
type HasViews = FalseT
type IsStruct = FalseT
type IsObject = FalseT
fn get_dtype() -> DataType
Source§impl Serialize for ListType
impl Serialize for ListType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ListType
impl RefUnwindSafe for ListType
impl Send for ListType
impl Sync for ListType
impl Unpin for ListType
impl UnwindSafe for ListType
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