pub struct Query {
pub goals: Vec<Goal>,
pub nested: Vec<NestedQuery>,
pub pattern: String,
}Expand description
Represents a query that may contain nested subqueries
Fields§
§goals: Vec<Goal>Main goals to evaluate
nested: Vec<NestedQuery>Any nested subqueries
pattern: StringOriginal query string
Implementations§
Source§impl Query
impl Query
Sourcepub fn add_nested(&mut self, nested: NestedQuery)
pub fn add_nested(&mut self, nested: NestedQuery)
Add a nested subquery
Sourcepub fn has_nested(&self) -> bool
pub fn has_nested(&self) -> bool
Check if this query has nested subqueries
Trait Implementations§
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