pub enum DataValidationOperator {
Between,
NotBetween,
Equal,
NotEqual,
LessThan,
LessThanOrEqual,
GreaterThan,
GreaterThanOrEqual,
}Expand description
Comparison operator for data validation.
ECMA-376 Part 1, Section 18.18.22 (ST_DataValidationOperator).
Variants§
Between
Between formula1 and formula2.
NotBetween
Not between formula1 and formula2.
Equal
Equal to formula1.
NotEqual
Not equal to formula1.
LessThan
Less than formula1.
LessThanOrEqual
Less than or equal to formula1.
GreaterThan
Greater than formula1.
GreaterThanOrEqual
Greater than or equal to formula1.
Implementations§
Source§impl DataValidationOperator
impl DataValidationOperator
Sourcepub fn to_xml_value(self) -> &'static str
pub fn to_xml_value(self) -> &'static str
Convert to XML attribute value.
Trait Implementations§
Source§impl Clone for DataValidationOperator
impl Clone for DataValidationOperator
Source§fn clone(&self) -> DataValidationOperator
fn clone(&self) -> DataValidationOperator
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 DataValidationOperator
impl Debug for DataValidationOperator
Source§impl Default for DataValidationOperator
impl Default for DataValidationOperator
Source§fn default() -> DataValidationOperator
fn default() -> DataValidationOperator
Returns the “default value” for a type. Read more
Source§impl PartialEq for DataValidationOperator
impl PartialEq for DataValidationOperator
impl Copy for DataValidationOperator
impl Eq for DataValidationOperator
impl StructuralPartialEq for DataValidationOperator
Auto Trait Implementations§
impl Freeze for DataValidationOperator
impl RefUnwindSafe for DataValidationOperator
impl Send for DataValidationOperator
impl Sync for DataValidationOperator
impl Unpin for DataValidationOperator
impl UnsafeUnpin for DataValidationOperator
impl UnwindSafe for DataValidationOperator
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.