[][src]Struct vega_lite_4::FluffyBinding

pub struct FluffyBinding {
    pub debounce: Option<f64>,
    pub element: Option<String>,
    pub input: Option<String>,
    pub name: Option<String>,
    pub binding_type: Option<String>,
    pub labels: Option<Vec<String>>,
    pub options: Option<Vec<Option<Value>>>,
    pub max: Option<f64>,
    pub min: Option<f64>,
    pub step: Option<f64>,
    pub autocomplete: Option<String>,
    pub placeholder: Option<String>,
    pub between: Option<Vec<Stream>>,
    pub consume: Option<bool>,
    pub filter: Option<LegendText>,
    pub markname: Option<String>,
    pub marktype: Option<MarkType>,
    pub source: Option<Source>,
    pub throttle: Option<f64>,
    pub stream: Option<Stream>,
    pub merge: Option<Vec<Stream>>,
}

Binds the parameter to an external input element such as a slider, selection list or radio button group.

Fields

debounce: Option<f64>element: Option<String>input: Option<String>name: Option<String>binding_type: Option<String>labels: Option<Vec<String>>options: Option<Vec<Option<Value>>>max: Option<f64>min: Option<f64>step: Option<f64>autocomplete: Option<String>placeholder: Option<String>between: Option<Vec<Stream>>consume: Option<bool>filter: Option<LegendText>markname: Option<String>marktype: Option<MarkType>source: Option<Source>throttle: Option<f64>stream: Option<Stream>merge: Option<Vec<Stream>>

Trait Implementations

impl Clone for FluffyBinding[src]

impl Debug for FluffyBinding[src]

impl Default for FluffyBinding[src]

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

impl From<FluffyBinding> for FluffyStream[src]

impl Serialize for FluffyBinding[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.