[][src]Enum vega_lite_3::PurpleLogicalOperandPredicate

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

Predicate for triggering the condition

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, oneOf, or valid,

  3. a selection predicate

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

Variants

Predicate(Predicate)
String(String)

Trait Implementations

impl Clone for PurpleLogicalOperandPredicate[src]

impl Debug for PurpleLogicalOperandPredicate[src]

impl<'de> Deserialize<'de> for PurpleLogicalOperandPredicate[src]

impl<'_> From<&'_ str> for PurpleLogicalOperandPredicate[src]

impl From<Predicate> for PurpleLogicalOperandPredicate[src]

impl From<String> for PurpleLogicalOperandPredicate[src]

impl Serialize for PurpleLogicalOperandPredicate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.