pub struct AggregatePhysicalExpressions {
pub args: Vec<Arc<dyn PhysicalExpr>>,
pub order_by_exprs: Vec<Arc<dyn PhysicalExpr>>,
}
Expand description
Stores the physical expressions used inside the AggregateExpr
.
Fields§
§args: Vec<Arc<dyn PhysicalExpr>>
Aggregate function arguments
order_by_exprs: Vec<Arc<dyn PhysicalExpr>>
Order by expressions
Auto Trait Implementations§
impl Freeze for AggregatePhysicalExpressions
impl !RefUnwindSafe for AggregatePhysicalExpressions
impl Send for AggregatePhysicalExpressions
impl Sync for AggregatePhysicalExpressions
impl Unpin for AggregatePhysicalExpressions
impl !UnwindSafe for AggregatePhysicalExpressions
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