Enum jsonpath_rust::parser::model::FilterSign   
source · pub enum FilterSign {
Show 14 variants
    Equal,
    Unequal,
    Less,
    Greater,
    LeOrEq,
    GrOrEq,
    Regex,
    In,
    Nin,
    Size,
    NoneOf,
    AnyOf,
    SubSetOf,
    Exists,
}Expand description
The operators for filtering functions
Variants§
Implementations§
Trait Implementations§
source§impl Clone for FilterSign
 
impl Clone for FilterSign
source§fn clone(&self) -> FilterSign
 
fn clone(&self) -> FilterSign
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 FilterSign
 
impl Debug for FilterSign
source§impl PartialEq<FilterSign> for FilterSign
 
impl PartialEq<FilterSign> for FilterSign
source§fn eq(&self, other: &FilterSign) -> bool
 
fn eq(&self, other: &FilterSign) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.