pub enum ValidationOperator {
Between,
NotBetween,
Equal,
NotEqual,
LessThan,
LessThanOrEqual,
GreaterThan,
GreaterThanOrEqual,
}Expand description
The comparison operator for data validation.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ValidationOperator
impl Clone for ValidationOperator
Source§fn clone(&self) -> ValidationOperator
fn clone(&self) -> ValidationOperator
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 ValidationOperator
impl Debug for ValidationOperator
Source§impl PartialEq for ValidationOperator
impl PartialEq for ValidationOperator
impl StructuralPartialEq for ValidationOperator
Auto Trait Implementations§
impl Freeze for ValidationOperator
impl RefUnwindSafe for ValidationOperator
impl Send for ValidationOperator
impl Sync for ValidationOperator
impl Unpin for ValidationOperator
impl UnwindSafe for ValidationOperator
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