pub enum TextComparisonOperator {
Contains,
NotContains,
BeginsWith,
EndsWith,
}Expand description
The comparison performed by a ConditionalFormattingCondition::ContainsText rule — shares the
cellIs-adjacent operator attribute name with ComparisonOperator, but is a distinct,
disjoint set of values (ST_ConditionalFormattingOperator’s text-comparison subset), so it’s
its own enum rather than reusing ComparisonOperator.
Variants§
Trait Implementations§
Source§impl Clone for TextComparisonOperator
impl Clone for TextComparisonOperator
Source§fn clone(&self) -> TextComparisonOperator
fn clone(&self) -> TextComparisonOperator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TextComparisonOperator
Source§impl Debug for TextComparisonOperator
impl Debug for TextComparisonOperator
impl Eq for TextComparisonOperator
Source§impl PartialEq for TextComparisonOperator
impl PartialEq for TextComparisonOperator
impl StructuralPartialEq for TextComparisonOperator
Auto Trait Implementations§
impl Freeze for TextComparisonOperator
impl RefUnwindSafe for TextComparisonOperator
impl Send for TextComparisonOperator
impl Sync for TextComparisonOperator
impl Unpin for TextComparisonOperator
impl UnsafeUnpin for TextComparisonOperator
impl UnwindSafe for TextComparisonOperator
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.