pub enum SelectProjection {
Wildcard,
Columns(Vec<String>),
Expressions(usize),
CountAll,
Aggregate {
function: AggregateFunction,
column: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for SelectProjection
impl Clone for SelectProjection
Source§fn clone(&self) -> SelectProjection
fn clone(&self) -> SelectProjection
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 SelectProjection
impl Debug for SelectProjection
Source§impl PartialEq for SelectProjection
impl PartialEq for SelectProjection
impl Eq for SelectProjection
impl StructuralPartialEq for SelectProjection
Auto Trait Implementations§
impl Freeze for SelectProjection
impl RefUnwindSafe for SelectProjection
impl Send for SelectProjection
impl Sync for SelectProjection
impl Unpin for SelectProjection
impl UnsafeUnpin for SelectProjection
impl UnwindSafe for SelectProjection
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