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 distinct: Distinct,
}
Fields§
§table_name: String
§fields_names: Vec<String>
§fields_values: Vec<Box<dyn Expression>>
§distinct: Distinct
Trait Implementations§
Auto 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