pub trait AggList {
// Required method
unsafe fn agg_list(&self, _groups: &GroupsType) -> Series;
}Available on crate feature
algorithm_group_by only.Required Methods§
Sourceunsafe fn agg_list(&self, _groups: &GroupsType) -> Series
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§
impl AggList for ArrayChunked
Available on crate feature
dtype-array only.impl AggList for BinaryChunked
impl AggList for BooleanChunked
impl AggList for ListChunked
impl AggList for NullChunked
impl AggList for StringChunked
impl<T: PolarsNumericType> AggList for ChunkedArray<T>
impl<T: PolarsObject> AggList for ObjectChunked<T>
Available on crate feature
object only.