pub struct GroupingSet {
pub columns: Vec<Expression>,
}Expand description
A single grouping set within GROUPING SETS
Example: (a, b) or () (empty for grand total) in GROUPING SETS ((a, b), ())
Fields§
§columns: Vec<Expression>Trait Implementations§
Source§impl Clone for GroupingSet
impl Clone for GroupingSet
Source§fn clone(&self) -> GroupingSet
fn clone(&self) -> GroupingSet
Returns a duplicate 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 GroupingSet
impl Debug for GroupingSet
Source§impl PartialEq for GroupingSet
impl PartialEq for GroupingSet
Source§impl ToSql for GroupingSet
impl ToSql for GroupingSet
impl StructuralPartialEq for GroupingSet
Auto Trait Implementations§
impl Freeze for GroupingSet
impl RefUnwindSafe for GroupingSet
impl Send for GroupingSet
impl Sync for GroupingSet
impl Unpin for GroupingSet
impl UnwindSafe for GroupingSet
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