pub enum QueryInner {
None,
All,
Nop(Box<str>),
Not(Box<QueryInner>),
And(Box<QueryInner>, Box<QueryInner>),
Or(Box<QueryInner>, Box<QueryInner>),
}Variants§
None
All
Nop(Box<str>)
Not(Box<QueryInner>)
And(Box<QueryInner>, Box<QueryInner>)
Or(Box<QueryInner>, Box<QueryInner>)
Trait Implementations§
Source§impl Clone for QueryInner
impl Clone for QueryInner
Source§fn clone(&self) -> QueryInner
fn clone(&self) -> QueryInner
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QueryInner
impl RefUnwindSafe for QueryInner
impl Send for QueryInner
impl Sync for QueryInner
impl Unpin for QueryInner
impl UnwindSafe for QueryInner
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