pub enum JSONRelationOp {
LessThan,
LessThanEq,
GreaterThan,
GreaterThanEq,
Equals,
NotEquals,
In,
}Variants§
Trait Implementations§
Source§impl Clone for JSONRelationOp
impl Clone for JSONRelationOp
Source§fn clone(&self) -> JSONRelationOp
fn clone(&self) -> JSONRelationOp
Returns a copy 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 JSONRelationOp
impl Debug for JSONRelationOp
Source§impl<'de> Deserialize<'de> for JSONRelationOp
impl<'de> Deserialize<'de> for JSONRelationOp
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 From<JSONRelationOp> for RelationOp
impl From<JSONRelationOp> for RelationOp
Source§fn from(op: JSONRelationOp) -> Self
fn from(op: JSONRelationOp) -> Self
Converts to this type from the input type.
Source§impl From<RelationOp> for JSONRelationOp
impl From<RelationOp> for JSONRelationOp
Source§fn from(op: RelationOp) -> Self
fn from(op: RelationOp) -> Self
Converts to this type from the input type.
Source§impl PartialEq for JSONRelationOp
impl PartialEq for JSONRelationOp
Source§impl Serialize for JSONRelationOp
impl Serialize for JSONRelationOp
impl Eq for JSONRelationOp
impl StructuralPartialEq for JSONRelationOp
Auto Trait Implementations§
impl Freeze for JSONRelationOp
impl RefUnwindSafe for JSONRelationOp
impl Send for JSONRelationOp
impl Sync for JSONRelationOp
impl Unpin for JSONRelationOp
impl UnwindSafe for JSONRelationOp
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