pub enum PurpleLogicalOperandPredicate {
    Predicate(Predicate),
    String(String),
}
Expand description

The filter property must be one of the predicate definitions:

  1. an expression string, where datum can be used to refer to the current data object

  2. one of the field predicates: equal, lt, lte, gt, gte, range, or oneOf.

  3. a selection predicate

  4. a logical operand that combines (1), (2), or (3).

Variants§

§

Predicate(Predicate)

§

String(String)

Trait Implementations§

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.