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§

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.