pub struct SelectBody {
pub table: NamedSelectSource,
pub distinct: bool,
pub returning: Vec<Returning>,
pub join: Vec<Join>,
pub where_: Option<Expr>,
pub group: Vec<Expr>,
pub order: Vec<(Expr, Order)>,
pub limit: Option<Expr>,
}Fields§
§table: NamedSelectSource§distinct: bool§returning: Vec<Returning>§join: Vec<Join>§where_: Option<Expr>§group: Vec<Expr>§order: Vec<(Expr, Order)>§limit: Option<Expr>Implementations§
Source§impl SelectBody
impl SelectBody
pub fn build( &self, ctx: &mut SqliteQueryCtx, inject_scope: &HashMap<Binding, Type>, path: &Vector<String>, res_count: QueryResCount, ) -> (ExprType, Tokens)
Trait Implementations§
Source§impl Clone for SelectBody
impl Clone for SelectBody
Source§fn clone(&self) -> SelectBody
fn clone(&self) -> SelectBody
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for SelectBody
impl !RefUnwindSafe for SelectBody
impl !Send for SelectBody
impl !Sync for SelectBody
impl Unpin for SelectBody
impl !UnwindSafe for SelectBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)