pub enum ComparisonOp {
Gt,
Gte,
Lt,
Lte,
}Expand description
G4 (Slice 35) — comparison operator for Predicate::JsonPathCompare.
Shared vocabulary (same crate-root export as ScalarValue). Closed
enum: {Gt, Gte, Lt, Lte} per D-F1. Derives Clone, Debug, PartialEq.
Variants§
Trait Implementations§
Source§impl Clone for ComparisonOp
impl Clone for ComparisonOp
Source§fn clone(&self) -> ComparisonOp
fn clone(&self) -> ComparisonOp
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 ComparisonOp
impl Debug for ComparisonOp
Source§impl PartialEq for ComparisonOp
impl PartialEq for ComparisonOp
impl StructuralPartialEq for ComparisonOp
Auto Trait Implementations§
impl Freeze for ComparisonOp
impl RefUnwindSafe for ComparisonOp
impl Send for ComparisonOp
impl Sync for ComparisonOp
impl Unpin for ComparisonOp
impl UnsafeUnpin for ComparisonOp
impl UnwindSafe for ComparisonOp
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