pub enum MDQueryCompareOp {
GreaterThan,
LessThan,
Equal,
GreaterThanOrEqual,
LessThanOrEqual,
}Expand description
Comparison operators for metadata query expressions.
Variants§
GreaterThan
Greater than (>)
LessThan
Less than (<)
Equal
Equal to (==)
GreaterThanOrEqual
Greater than or equal to (>=)
LessThanOrEqual
Less than or equal to (<=)
Auto Trait Implementations§
impl Freeze for MDQueryCompareOp
impl RefUnwindSafe for MDQueryCompareOp
impl Send for MDQueryCompareOp
impl Sync for MDQueryCompareOp
impl Unpin for MDQueryCompareOp
impl UnsafeUnpin for MDQueryCompareOp
impl UnwindSafe for MDQueryCompareOp
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