pub enum ProjectionClause {
Item(Vec<Expression>),
GroupBy {
grouping: Vec<Expression>,
aggregates: Vec<Expression>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ProjectionClause
impl Clone for ProjectionClause
Source§fn clone(&self) -> ProjectionClause
fn clone(&self) -> ProjectionClause
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectionClause
impl Debug for ProjectionClause
Source§impl PartialEq for ProjectionClause
impl PartialEq for ProjectionClause
Source§fn eq(&self, other: &ProjectionClause) -> bool
fn eq(&self, other: &ProjectionClause) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProjectionClause
Auto Trait Implementations§
impl Freeze for ProjectionClause
impl RefUnwindSafe for ProjectionClause
impl Send for ProjectionClause
impl Sync for ProjectionClause
impl Unpin for ProjectionClause
impl UnsafeUnpin for ProjectionClause
impl UnwindSafe for ProjectionClause
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