pub enum QueryConstraintOp {
LessThan,
LessThanEq,
GreaterThan,
GreaterThanEq,
Eq,
NotEq,
ArrayContains,
In,
ArrayContainsAny,
NotIn,
}
Variants§
LessThan
<
o
LessThanEq
<=
GreaterThan
>
GreaterThanEq
>=
Eq
==
NotEq
!=
ArrayContains
array-contains
In
in
ArrayContainsAny
array-contains-any
NotIn
not-in
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueryConstraintOp
impl RefUnwindSafe for QueryConstraintOp
impl Send for QueryConstraintOp
impl Sync for QueryConstraintOp
impl Unpin for QueryConstraintOp
impl UnwindSafe for QueryConstraintOp
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