[][src]Struct vega_lite_4::Lookup

pub struct Lookup {
    pub data: Option<Data>,
    pub fields: Option<Vec<String>>,
    pub key: Option<String>,
    pub selection: Option<String>,
}

Data source or selection for secondary data reference.

Fields

data: Option<Data>

Secondary data source to lookup in.

fields: Option<Vec<String>>

Fields in foreign data or selection to lookup. If not specified, the entire object is queried.

key: Option<String>

Key in data to lookup.

selection: Option<String>

Selection name to look up.

Trait Implementations

impl Clone for Lookup[src]

impl Debug for Lookup[src]

impl Default for Lookup[src]

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

impl Serialize for Lookup[src]

Auto Trait Implementations

impl RefUnwindSafe for Lookup

impl Send for Lookup

impl Sync for Lookup

impl Unpin for Lookup

impl UnwindSafe for Lookup

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.