pub struct SelectStatement {
pub table_name: String,
pub columns: Option<Vec<String>>,
pub where_clause: Option<Condition>,
pub aggregator_function: Option<AggregatorFunction>,
}Fields§
§table_name: String§columns: Option<Vec<String>>§where_clause: Option<Condition>§aggregator_function: Option<AggregatorFunction>Implementations§
Source§impl SelectStatement
impl SelectStatement
pub fn from_tokens(tokens: Vec<SQLToken>) -> Self
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