pub struct Query {
pub find: FindSpec,
pub with: Vec<Var>,
pub inputs: Vec<InSpec>,
pub wheres: Vec<Clause>,
}Expand description
A parsed query.
Fields§
§find: FindSpecThe :find specification.
with: Vec<Var>Extra grouping variables (:with).
inputs: Vec<InSpec>Input bindings (:in), defaulting to [$].
wheres: Vec<Clause>The :where clauses.
Trait Implementations§
impl Eq for Query
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 UnsafeUnpin 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