pub enum Operator {
In,
NotIn,
Within,
NotWithin,
Is,
IsNot,
EQ,
NotEQ,
}Expand description
An enum of Relation operators for plural rules.
Each Operator enumeration belongs to the corresponding symbolic operators:
| Enum Operator | Symbolic Operator |
|---|---|
| In | “in” |
| NotIn | “not in” |
| Within | “within” |
| NotWithin | “not within” |
| Is | “is” |
| IsNot | “is not” |
| EQ | “=” |
| NotEq | “!=” |
Variants§
Trait Implementations§
impl StructuralPartialEq for Operator
Auto Trait Implementations§
impl Freeze for Operator
impl RefUnwindSafe for Operator
impl Send for Operator
impl Sync for Operator
impl Unpin for Operator
impl UnwindSafe for Operator
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