pub enum QueryOperator {
Not,
And,
Or,
Dot,
}Expand description
Represents a query operator. WIP.
Variants§
Not
Represents the ! operator.
And
Represents the & operator.
Or
Represents the | operator.
Dot
Represents the . operator.
Trait Implementations§
Source§impl Clone for QueryOperator
impl Clone for QueryOperator
Source§fn clone(&self) -> QueryOperator
fn clone(&self) -> QueryOperator
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 moreSource§impl Debug for QueryOperator
impl Debug for QueryOperator
Source§impl Hash for QueryOperator
impl Hash for QueryOperator
Source§impl PartialEq for QueryOperator
impl PartialEq for QueryOperator
impl Copy for QueryOperator
impl Eq for QueryOperator
impl StructuralPartialEq for QueryOperator
Auto Trait Implementations§
impl Freeze for QueryOperator
impl RefUnwindSafe for QueryOperator
impl Send for QueryOperator
impl Sync for QueryOperator
impl Unpin for QueryOperator
impl UnwindSafe for QueryOperator
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