Struct gitql_ast::statement::SelectStatement
source · pub struct SelectStatement {
pub table_name: String,
pub fields_names: Vec<String>,
pub fields_values: Vec<Box<dyn Expression>>,
pub alias_table: HashMap<String, String>,
pub is_distinct: bool,
}
Fields§
§table_name: String
§fields_names: Vec<String>
§fields_values: Vec<Box<dyn Expression>>
§alias_table: HashMap<String, String>
§is_distinct: bool
Trait Implementations§
Auto Trait Implementations§
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