pub struct QisTrigger<'a> {
pub captures: Vec<&'a str>,
}Expand description
A parsed and analyzed query.
Create with new, optionally configure fuel limits,
then call exec to run analysis.
For compilation, call build_graph after exec.
Check is_valid or diagnostics
to determine if the query has syntax/semantic issues.
Quantifier-Induced Scope trigger info.
When a quantified expression has ≥2 propagating captures, QIS creates an implicit object scope so captures stay coupled per-iteration.
Fields§
§captures: Vec<&'a str>Capture names that propagate from this quantified expression.
Trait Implementations§
Source§impl<'a> Clone for QisTrigger<'a>
impl<'a> Clone for QisTrigger<'a>
Source§fn clone(&self) -> QisTrigger<'a>
fn clone(&self) -> QisTrigger<'a>
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for QisTrigger<'a>
impl<'a> RefUnwindSafe for QisTrigger<'a>
impl<'a> Send for QisTrigger<'a>
impl<'a> Sync for QisTrigger<'a>
impl<'a> Unpin for QisTrigger<'a>
impl<'a> UnwindSafe for QisTrigger<'a>
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)