pub struct ValueCondition { /* private fields */ }Expand description
Defines a condition that compares the cell-content with a value.
Implementations§
Source§impl ValueCondition
impl ValueCondition
Sourcepub fn value_eq<V: Into<Value>>(value: V) -> ValueCondition
pub fn value_eq<V: Into<Value>>(value: V) -> ValueCondition
Compares the cell-content with a value.
Sourcepub fn value_ne<V: Into<Value>>(value: V) -> ValueCondition
pub fn value_ne<V: Into<Value>>(value: V) -> ValueCondition
Compares the cell-content with a value.
Sourcepub fn value_lt<V: Into<Value>>(value: V) -> ValueCondition
pub fn value_lt<V: Into<Value>>(value: V) -> ValueCondition
Compares the cell-content with a value.
Sourcepub fn value_gt<V: Into<Value>>(value: V) -> ValueCondition
pub fn value_gt<V: Into<Value>>(value: V) -> ValueCondition
Compares the cell-content with a value.
Sourcepub fn value_le<V: Into<Value>>(value: V) -> ValueCondition
pub fn value_le<V: Into<Value>>(value: V) -> ValueCondition
Compares the cell-content with a value.
Sourcepub fn value_ge<V: Into<Value>>(value: V) -> ValueCondition
pub fn value_ge<V: Into<Value>>(value: V) -> ValueCondition
Compares the cell-content with a value.
Trait Implementations§
Source§impl Clone for ValueCondition
impl Clone for ValueCondition
Source§fn clone(&self) -> ValueCondition
fn clone(&self) -> ValueCondition
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 ValueCondition
impl Debug for ValueCondition
Source§impl Default for ValueCondition
impl Default for ValueCondition
Source§fn default() -> ValueCondition
fn default() -> ValueCondition
Returns the “default value” for a type. Read more
Source§impl Display for ValueCondition
impl Display for ValueCondition
Source§impl GetSize for ValueCondition
impl GetSize for ValueCondition
Source§fn get_heap_size(&self) -> usize
fn get_heap_size(&self) -> usize
Determines how many bytes this object occupies inside the heap. Read more
Source§fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>(
&self,
tracker: TRACKER,
) -> (usize, TRACKER)
fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>( &self, tracker: TRACKER, ) -> (usize, TRACKER)
Determines how many bytes this object occupies inside the heap while using a
tracker. Read moreSource§fn get_stack_size() -> usize
fn get_stack_size() -> usize
Determines how may bytes this object occupies inside the stack. Read more
Source§fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
Determines the total size of the object while using a
tracker. Read moreAuto Trait Implementations§
impl Freeze for ValueCondition
impl RefUnwindSafe for ValueCondition
impl Send for ValueCondition
impl Sync for ValueCondition
impl Unpin for ValueCondition
impl UnwindSafe for ValueCondition
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