Enum polars_plan::dsl::AggExpr
source · [−]pub enum AggExpr {
Show 14 variants
Min {
input: Box<Expr>,
propagate_nans: bool,
},
Max {
input: Box<Expr>,
propagate_nans: bool,
},
Median(Box<Expr>),
NUnique(Box<Expr>),
First(Box<Expr>),
Last(Box<Expr>),
Mean(Box<Expr>),
List(Box<Expr>),
Count(Box<Expr>),
Quantile {
expr: Box<Expr>,
quantile: f64,
interpol: QuantileInterpolOptions,
},
Sum(Box<Expr>),
AggGroups(Box<Expr>),
Std(Box<Expr>, u8),
Var(Box<Expr>, u8),
}
Variants
Min
Max
Median(Box<Expr>)
NUnique(Box<Expr>)
First(Box<Expr>)
Last(Box<Expr>)
Mean(Box<Expr>)
List(Box<Expr>)
Count(Box<Expr>)
Quantile
Sum(Box<Expr>)
AggGroups(Box<Expr>)
Std(Box<Expr>, u8)
Var(Box<Expr>, u8)
Trait Implementations
sourceimpl<'de> Deserialize<'de> for AggExpr
impl<'de> Deserialize<'de> for AggExpr
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AggExpr
Auto Trait Implementations
impl !RefUnwindSafe for AggExpr
impl Send for AggExpr
impl Sync for AggExpr
impl Unpin for AggExpr
impl !UnwindSafe for AggExpr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more