pub struct SelectStatement {
pub table_selections: Vec<TableSelection>,
pub joins: Vec<Join>,
pub selected_expr_titles: Vec<String>,
pub selected_expr: Vec<Box<dyn Expr>>,
pub distinct: Distinct,
}
Fields§
§table_selections: Vec<TableSelection>
§joins: Vec<Join>
§selected_expr_titles: Vec<String>
§selected_expr: Vec<Box<dyn Expr>>
§distinct: Distinct
Trait Implementations§
Source§impl Clone for SelectStatement
impl Clone for SelectStatement
Source§fn clone(&self) -> SelectStatement
fn clone(&self) -> SelectStatement
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 moreAuto Trait Implementations§
impl Freeze for SelectStatement
impl !RefUnwindSafe for SelectStatement
impl !Send for SelectStatement
impl !Sync for SelectStatement
impl Unpin for SelectStatement
impl !UnwindSafe for SelectStatement
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