pub struct Query {
pub select: SelectClause,
pub from: FromClause,
pub where_clause: Option<WhereClause>,
pub group_by: Option<GroupByClause>,
pub having: Option<HavingClause>,
pub order_by: Option<OrderByClause>,
pub limit: Option<LimitClause>,
}Expand description
A complete SQL-like query
Fields§
§select: SelectClause§from: FromClause§where_clause: Option<WhereClause>§group_by: Option<GroupByClause>§having: Option<HavingClause>§order_by: Option<OrderByClause>§limit: Option<LimitClause>Trait Implementations§
impl StructuralPartialEq for Query
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnwindSafe for Query
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