pub struct AggPlan {
pub group_cols: Vec<String>,
pub aggs: Vec<AggSpec>,
}Expand description
Validated GROUP BY plan: canonical group columns + resolved aggregations.
Fields§
§group_cols: Vec<String>§aggs: Vec<AggSpec>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AggPlan
impl RefUnwindSafe for AggPlan
impl Send for AggPlan
impl Sync for AggPlan
impl Unpin for AggPlan
impl UnsafeUnpin for AggPlan
impl UnwindSafe for AggPlan
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