pub enum ParseMode {
Strict,
Relaxed,
}Expand description
How to parse this expression.
Variants§
Strict
Follow the specified query language to the letter.
This should always return the exact query you specified without shifts in priority.
Relaxed
Try to interpret the best you can, if the query string does not match exactly.
This can (and probably will) insert descending query priorities from right-to-left.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParseMode
impl RefUnwindSafe for ParseMode
impl Send for ParseMode
impl Sync for ParseMode
impl Unpin for ParseMode
impl UnwindSafe for ParseMode
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