pub enum ComparisonType {
Equals,
NotEquals,
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
In,
NotIn,
}Variants§
Trait Implementations§
Source§impl Clone for ComparisonType
impl Clone for ComparisonType
Source§fn clone(&self) -> ComparisonType
fn clone(&self) -> ComparisonType
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 ComparisonType
Source§impl Debug for ComparisonType
impl Debug for ComparisonType
Source§impl<'de> Deserialize<'de> for ComparisonType
impl<'de> Deserialize<'de> for ComparisonType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ComparisonType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ComparisonType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ComparisonType
impl PartialEq for ComparisonType
Source§impl Serialize for ComparisonType
impl Serialize for ComparisonType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ComparisonType
Auto Trait Implementations§
impl Freeze for ComparisonType
impl RefUnwindSafe for ComparisonType
impl Send for ComparisonType
impl Sync for ComparisonType
impl Unpin for ComparisonType
impl UnsafeUnpin for ComparisonType
impl UnwindSafe for ComparisonType
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