Skip to main content

AggList

Trait AggList 

Source
pub trait AggList {
    // Required method
    unsafe fn agg_list(&self, _groups: &GroupsType) -> Series;
}
Available on crate feature algorithm_group_by only.

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 ArrayChunked

Available on crate feature dtype-array only.
Source§

impl AggList for BinaryChunked

Source§

impl AggList for BooleanChunked

Source§

impl AggList for ListChunked

Source§

impl AggList for NullChunked

Source§

impl AggList for StringChunked

Source§

impl<T: PolarsNumericType> AggList for ChunkedArray<T>

Source§

impl<T: PolarsObject> AggList for ObjectChunked<T>

Available on crate feature object only.