pub struct QueryAst {
pub query: SqlSetOp,
pub order: Vec<OrderByElem>,
pub limit: Option<SqlLiteral>,
}Expand description
The AST for the SQL query language
Fields§
§query: SqlSetOp§order: Vec<OrderByElem>§limit: Option<SqlLiteral>Auto Trait Implementations§
impl Freeze for QueryAst
impl RefUnwindSafe for QueryAst
impl Send for QueryAst
impl Sync for QueryAst
impl Unpin for QueryAst
impl UnsafeUnpin for QueryAst
impl UnwindSafe for QueryAst
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