[][src]Enum vega_lite_4::PredicateCompositionElement

pub enum PredicateCompositionElement {
    Predicate(Box<Predicate>),
    String(String),
}

Predicate for triggering the condition

The filter property must be a predication definition, which can take one of the following forms:

  1. an expression string, where datum can be used to refer to the current data object. For example, {filter: "datum.b2 > 60"} would make the output data includes only items that have values in the field b2 over 60.

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

  3. a selection predicate, which define the names of a selection that the data point should belong to (or a logical composition of selections).

  4. a logical composition of (1), (2), or (3).

Variants

Predicate(Box<Predicate>)
String(String)

Trait Implementations

impl Clone for PredicateCompositionElement[src]

impl Debug for PredicateCompositionElement[src]

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

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

impl From<Box<Predicate, Global>> for PredicateCompositionElement[src]

impl From<String> for PredicateCompositionElement[src]

impl Serialize for PredicateCompositionElement[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: for<'de> 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.