pub enum ConditionOp {
Equals,
NotEquals,
GreaterThan,
LessThan,
Contains,
Exists,
}Variants§
Trait Implementations§
Source§impl Clone for ConditionOp
impl Clone for ConditionOp
Source§fn clone(&self) -> ConditionOp
fn clone(&self) -> ConditionOp
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 ConditionOp
impl Debug for ConditionOp
Source§impl<'de> Deserialize<'de> for ConditionOp
impl<'de> Deserialize<'de> for ConditionOp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConditionOp
impl RefUnwindSafe for ConditionOp
impl Send for ConditionOp
impl Sync for ConditionOp
impl Unpin for ConditionOp
impl UnwindSafe for ConditionOp
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