pub enum SelectClause {
Show 14 variants
From,
GroupBy,
Having,
Join,
Limit,
Offset,
OrderBy,
Select,
Where,
Window,
Except,
Intersect,
Union,
With,
}Expand description
All available clauses to be used in Select::raw_before and Select::raw_after methods on Select builder
Variants§
From
GroupBy
Having
Join
Limit
Offset
OrderBy
Select
Where
Window
Except
Available on crate features
postgresql and sqlite only.Intersect
Available on crate features
postgresql and sqlite only.Union
Available on crate features
postgresql and sqlite only.With
Available on crate features
postgresql and sqlite only.Trait Implementations§
Source§impl Clone for SelectClause
impl Clone for SelectClause
Source§fn clone(&self) -> SelectClause
fn clone(&self) -> SelectClause
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 PartialEq for SelectClause
impl PartialEq for SelectClause
impl StructuralPartialEq for SelectClause
Auto Trait Implementations§
impl Freeze for SelectClause
impl RefUnwindSafe for SelectClause
impl Send for SelectClause
impl Sync for SelectClause
impl Unpin for SelectClause
impl UnwindSafe for SelectClause
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