pub enum ConditionalFormattingOperatorValues {
    BeginsWith,
    Between,
    ContainsText,
    EndsWith,
    Equal,
    GreaterThan,
    GreaterThanOrEqual,
    LessThan,
    LessThanOrEqual,
    NotBetween,
    NotContains,
    NotEqual,
}Variants§
BeginsWith
Between
ContainsText
EndsWith
Equal
GreaterThan
GreaterThanOrEqual
LessThan
LessThanOrEqual
NotBetween
NotContains
NotEqual
Trait Implementations§
source§impl Clone for ConditionalFormattingOperatorValues
 
impl Clone for ConditionalFormattingOperatorValues
source§fn clone(&self) -> ConditionalFormattingOperatorValues
 
fn clone(&self) -> ConditionalFormattingOperatorValues
Returns a copy 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 EnumTrait for ConditionalFormattingOperatorValues
 
impl EnumTrait for ConditionalFormattingOperatorValues
fn get_value_string(&self) -> &str
source§impl Ord for ConditionalFormattingOperatorValues
 
impl Ord for ConditionalFormattingOperatorValues
source§fn cmp(&self, other: &ConditionalFormattingOperatorValues) -> Ordering
 
fn cmp(&self, other: &ConditionalFormattingOperatorValues) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ConditionalFormattingOperatorValues> for ConditionalFormattingOperatorValues
 
impl PartialEq<ConditionalFormattingOperatorValues> for ConditionalFormattingOperatorValues
source§fn eq(&self, other: &ConditionalFormattingOperatorValues) -> bool
 
fn eq(&self, other: &ConditionalFormattingOperatorValues) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ConditionalFormattingOperatorValues> for ConditionalFormattingOperatorValues
 
impl PartialOrd<ConditionalFormattingOperatorValues> for ConditionalFormattingOperatorValues
source§fn partial_cmp(
    &self,
    other: &ConditionalFormattingOperatorValues
) -> Option<Ordering>
 
fn partial_cmp( &self, other: &ConditionalFormattingOperatorValues ) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreimpl Eq for ConditionalFormattingOperatorValues
impl StructuralEq for ConditionalFormattingOperatorValues
impl StructuralPartialEq for ConditionalFormattingOperatorValues
Auto Trait Implementations§
impl RefUnwindSafe for ConditionalFormattingOperatorValues
impl Send for ConditionalFormattingOperatorValues
impl Sync for ConditionalFormattingOperatorValues
impl Unpin for ConditionalFormattingOperatorValues
impl UnwindSafe for ConditionalFormattingOperatorValues
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
§impl<T> Pointable for T
 
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
    R: Read + ReadEndian<P>,
    P: Default,
 
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
 
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as 
ReadEndian::read_from_little_endian().