Enum polars_plan::logical_plan::AAggExpr
source · pub enum AAggExpr {
Show 14 variants
Min {
input: Node,
propagate_nans: bool,
},
Max {
input: Node,
propagate_nans: bool,
},
Median(Node),
NUnique(Node),
First(Node),
Last(Node),
Mean(Node),
Implode(Node),
Quantile {
expr: Node,
quantile: Node,
interpol: QuantileInterpolOptions,
},
Sum(Node),
Count(Node, bool),
Std(Node, u8),
Var(Node, u8),
AggGroups(Node),
}
Variants§
Min
Max
Median(Node)
NUnique(Node)
First(Node)
Last(Node)
Mean(Node)
Implode(Node)
Quantile
Sum(Node)
Count(Node, bool)
Std(Node, u8)
Var(Node, u8)
AggGroups(Node)
Implementations§
Trait Implementations§
source§impl From<AAggExpr> for GroupByMethod
impl From<AAggExpr> for GroupByMethod
Auto Trait Implementations§
impl Freeze for AAggExpr
impl RefUnwindSafe for AAggExpr
impl Send for AAggExpr
impl Sync for AAggExpr
impl Unpin for AAggExpr
impl UnwindSafe for AAggExpr
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
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