pub trait PhysicalAggExpr {
    fn evaluate(
        &self,
        df: &DataFrame,
        groups: &GroupsProxy
    ) -> PolarsResult<Series>; fn root_name(&self) -> PolarsResult<&str>; }

Required Methods§

Implementors§