[][src]Struct vega_lite_3::AutoSizeParams

pub struct AutoSizeParams {
    pub contains: Option<Contains>,
    pub resize: Option<bool>,
    pub auto_size_params_type: Option<AutosizeType>,
}

Fields

contains: Option<Contains>

Determines how size calculation should be performed, one of "content" or "padding". The default setting ("content") interprets the width and height settings as the data rectangle (plotting) dimensions, to which padding is then added. In contrast, the "padding" setting includes the padding within the view size calculations, such that the width and height settings indicate the total intended size of the view.

Default value: "content"

resize: Option<bool>

A boolean flag indicating if autosize layout should be re-calculated on every view update.

Default value: false

auto_size_params_type: Option<AutosizeType>

The sizing format type. One of "pad", "fit" or "none". See the autosize type documentation for descriptions of each.

Default value: "pad"

Trait Implementations

impl Clone for AutoSizeParams[src]

impl Debug for AutoSizeParams[src]

impl Default for AutoSizeParams[src]

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

impl From<AutoSizeParams> for Autosize[src]

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