pub enum DvOp {
Between,
NotBetween,
Equal,
NotEqual,
GreaterThan,
LessThan,
GreaterThanOrEqual,
LessThanOrEqual,
}Expand description
Data-validation comparison operator.
Variants§
Between
formula1 ≤ x ≤ formula2.
NotBetween
Outside [formula1, formula2].
Equal
x == formula1.
NotEqual
x != formula1.
GreaterThan
x > formula1.
LessThan
x < formula1.
GreaterThanOrEqual
x ≥ formula1.
LessThanOrEqual
x ≤ formula1.
Trait Implementations§
impl Copy for DvOp
impl Eq for DvOp
impl StructuralPartialEq for DvOp
Auto Trait Implementations§
impl Freeze for DvOp
impl RefUnwindSafe for DvOp
impl Send for DvOp
impl Sync for DvOp
impl Unpin for DvOp
impl UnsafeUnpin for DvOp
impl UnwindSafe for DvOp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.