Skip to main content

AggList

Trait AggList 

Source
pub trait AggList {
    // Required method
    unsafe fn agg_list(&self, _groups: &GroupsType) -> Series;
}

Required Methods§

Source

unsafe fn agg_list(&self, _groups: &GroupsType) -> Series

§Safety

groups should be in bounds

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl AggList for ChunkedArray<BinaryType>

Source§

impl AggList for ChunkedArray<BooleanType>

Source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
Source§

impl AggList for ChunkedArray<ListType>

Source§

impl AggList for ChunkedArray<StringType>

Source§

impl AggList for ChunkedArray<StructType>

Available on crate feature dtype-struct only.
Source§

impl AggList for NullChunked

Source§

impl<T> AggList for ChunkedArray<ObjectType<T>>
where T: PolarsObject,

Available on crate feature object only.
Source§

impl<T> AggList for ChunkedArray<T>