Struct datafusion_expr::expr::AggregateFunction
source · pub struct AggregateFunction {
pub fun: AggregateFunction,
pub args: Vec<Expr>,
pub distinct: bool,
pub filter: Option<Box<Expr>>,
}
Expand description
Aggregate function
Fields§
§fun: AggregateFunction
Name of the function
args: Vec<Expr>
List of expressions to feed to the functions as arguments
distinct: bool
Whether this is a DISTINCT aggregation or not
filter: Option<Box<Expr>>
Optional filter
Implementations§
Trait Implementations§
source§impl Clone for AggregateFunction
impl Clone for AggregateFunction
source§fn clone(&self) -> AggregateFunction
fn clone(&self) -> AggregateFunction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Hash for AggregateFunction
impl Hash for AggregateFunction
source§impl PartialEq<AggregateFunction> for AggregateFunction
impl PartialEq<AggregateFunction> for AggregateFunction
source§fn eq(&self, other: &AggregateFunction) -> bool
fn eq(&self, other: &AggregateFunction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AggregateFunction
impl StructuralEq for AggregateFunction
impl StructuralPartialEq for AggregateFunction
Auto Trait Implementations§
impl !RefUnwindSafe for AggregateFunction
impl Send for AggregateFunction
impl Sync for AggregateFunction
impl Unpin for AggregateFunction
impl !UnwindSafe for AggregateFunction
Blanket Implementations§
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more