pub enum PropertyOp {
Eq,
Ne,
In,
Range,
Exists,
}Expand description
Comparison operators for PropertyFilter (ADR-044).
Variants§
Trait Implementations§
Source§impl Clone for PropertyOp
impl Clone for PropertyOp
Source§fn clone(&self) -> PropertyOp
fn clone(&self) -> PropertyOp
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 moreSource§impl Debug for PropertyOp
impl Debug for PropertyOp
Source§impl<'de> Deserialize<'de> for PropertyOp
impl<'de> Deserialize<'de> for PropertyOp
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
Source§impl PartialEq for PropertyOp
impl PartialEq for PropertyOp
Source§fn eq(&self, other: &PropertyOp) -> bool
fn eq(&self, other: &PropertyOp) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyOp
impl Serialize for PropertyOp
impl Eq for PropertyOp
impl StructuralPartialEq for PropertyOp
Auto Trait Implementations§
impl Freeze for PropertyOp
impl RefUnwindSafe for PropertyOp
impl Send for PropertyOp
impl Sync for PropertyOp
impl Unpin for PropertyOp
impl UnsafeUnpin for PropertyOp
impl UnwindSafe for PropertyOp
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