[][src]Struct vega_lite_4::AutoSizeParamsBuilder

pub struct AutoSizeParamsBuilder { /* fields omitted */ }

Builder for AutoSizeParams.

Methods

impl AutoSizeParamsBuilder[src]

pub fn contains<VALUE: Into<Contains>>(&mut self, value: VALUE) -> &mut Self[src]

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"

pub fn resize<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self[src]

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

Default value: false

pub fn auto_size_params_type<VALUE: Into<AutosizeType>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

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

Default value: "pad"

pub fn build(&self) -> Result<AutoSizeParams, String>[src]

Builds a new AutoSizeParams.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for AutoSizeParamsBuilder[src]

impl Default for AutoSizeParamsBuilder[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> 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.