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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more