pub struct AggregateOperator {
pub groupby_exprs: Vec<ScalarExpression>,
pub agg_calls: Vec<ScalarExpression>,
}
Fields§
§groupby_exprs: Vec<ScalarExpression>
§agg_calls: Vec<ScalarExpression>
Implementations§
source§impl AggregateOperator
impl AggregateOperator
pub fn build( children: LogicalPlan, agg_calls: Vec<ScalarExpression>, groupby_exprs: Vec<ScalarExpression> ) -> LogicalPlan
Trait Implementations§
source§impl Clone for AggregateOperator
impl Clone for AggregateOperator
source§fn clone(&self) -> AggregateOperator
fn clone(&self) -> AggregateOperator
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 Debug for AggregateOperator
impl Debug for AggregateOperator
source§impl Hash for AggregateOperator
impl Hash for AggregateOperator
source§impl PartialEq for AggregateOperator
impl PartialEq for AggregateOperator
source§fn eq(&self, other: &AggregateOperator) -> bool
fn eq(&self, other: &AggregateOperator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AggregateOperator
impl StructuralEq for AggregateOperator
impl StructuralPartialEq for AggregateOperator
Auto Trait Implementations§
impl RefUnwindSafe for AggregateOperator
impl Send for AggregateOperator
impl Sync for AggregateOperator
impl Unpin for AggregateOperator
impl UnwindSafe for AggregateOperator
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.