Enum preserves_path::schemas::path::Filter [−][src]
pub enum Filter<_Value: NestedValue = IOValue> {
Nop,
Compare {
op: Box<Comparison>,
literal: _Value,
},
Regex {
regex: String,
},
Test {
pred: Box<Predicate<_Value>>,
},
Real,
Int,
Kind {
kind: Box<ValueKind>,
},
}Variants
Fields of Compare
op: Box<Comparison>literal: _ValueFields of Regex
regex: StringTrait Implementations
impl<'de, _Value: NestedValue, R: Reader<'de, _Value>> Deserialize<'de, _Value, R> for Filter<_Value>
impl<'de, _Value: NestedValue, R: Reader<'de, _Value>> Deserialize<'de, _Value, R> for Filter<_Value>
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl<_Value> RefUnwindSafe for Filter<_Value> where
_Value: RefUnwindSafe,
impl<_Value> UnwindSafe for Filter<_Value> where
_Value: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more