Struct partiql_logical::GroupBy
source · pub struct GroupBy {
pub strategy: GroupingStrategy,
pub exprs: HashMap<String, ValueExpr>,
pub aggregate_exprs: Vec<AggregateExpression>,
pub group_as_alias: Option<String>,
}
Expand description
Represents GROUP BY
Fields§
§strategy: GroupingStrategy
§exprs: HashMap<String, ValueExpr>
§aggregate_exprs: Vec<AggregateExpression>
§group_as_alias: Option<String>
Trait Implementations§
source§impl PartialEq<GroupBy> for GroupBy
impl PartialEq<GroupBy> for GroupBy
impl Eq for GroupBy
impl StructuralEq for GroupBy
impl StructuralPartialEq for GroupBy
Auto Trait Implementations§
impl RefUnwindSafe for GroupBy
impl Send for GroupBy
impl Sync for GroupBy
impl Unpin for GroupBy
impl UnwindSafe for GroupBy
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