pub struct AggResult {
pub columns: Vec<ColumnSchema>,
pub rows: Vec<Row>,
}Expand description
Output of running the aggregate path. Schema describes one row per group; rows are not yet ORDER BY-sorted (caller does it).
Fields§
§columns: Vec<ColumnSchema>§rows: Vec<Row>Trait Implementations§
Auto Trait Implementations§
impl Freeze for AggResult
impl RefUnwindSafe for AggResult
impl Send for AggResult
impl Sync for AggResult
impl Unpin for AggResult
impl UnsafeUnpin for AggResult
impl UnwindSafe for AggResult
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