Skip to main content

SettingField

Struct SettingField 

Source
pub struct SettingField<T> { /* private fields */ }
Expand description

A setting field that can get and set a value of type T in the App.

Implementations§

Source§

impl SettingField<bool>

Source

pub fn switch<V, S>(value: V, set_value: S) -> Self
where V: Fn(&App) -> bool + 'static, S: Fn(bool, &mut App) + 'static,

Create a new Switch field.

Source

pub fn checkbox<V, S>(value: V, set_value: S) -> Self
where V: Fn(&App) -> bool + 'static, S: Fn(bool, &mut App) + 'static,

Create a new Checkbox field.

Source§

impl SettingField<SharedString>

Source

pub fn input<V, S>(value: V, set_value: S) -> Self
where V: Fn(&App) -> SharedString + 'static, S: Fn(SharedString, &mut App) + 'static,

Create a new Input field.

Source

pub fn dropdown<V, S>( options: Vec<(SharedString, SharedString)>, value: V, set_value: S, ) -> Self
where V: Fn(&App) -> SharedString + 'static, S: Fn(SharedString, &mut App) + 'static,

Create a new Dropdown field with the given options.

The popup menu does not scroll. For long option lists that may exceed the viewport, use Self::scrollable_dropdown instead.

Source

pub fn scrollable_dropdown<V, S>( options: Vec<(SharedString, SharedString)>, value: V, set_value: S, ) -> Self
where V: Fn(&App) -> SharedString + 'static, S: Fn(SharedString, &mut App) + 'static,

Create a new Dropdown field whose popup menu scrolls when its content exceeds the viewport. Use this for long option lists where the non-scrolling Self::dropdown would push items below the fold.

Source

pub fn element<E>(element: E) -> Self
where E: SettingFieldElement + 'static,

Create a new setting field with the given custom element that implements SettingFieldElement trait.

See also SettingField::render for simply building with a render closure.

Source

pub fn render<E, R>(element_render: R) -> Self
where E: IntoElement + 'static, R: Fn(&RenderOptions, &mut Window, &mut App) -> E + 'static,

Create a new setting field with the given element render closure.

See also SettingField::element for building with a custom field for more complex scenarios.

Source§

impl SettingField<f64>

Source

pub fn number_input<V, S>( options: NumberFieldOptions, value: V, set_value: S, ) -> Self
where V: Fn(&App) -> f64 + 'static, S: Fn(f64, &mut App) + 'static,

Create a new Number Input field with the given options.

Source§

impl<T> SettingField<T>

Source

pub fn default_value(self, default_value: impl Into<T>) -> Self

Set the default value for this setting field, default is None.

If set, this value can be used to reset the setting to its default state. If not set, the setting cannot be reset.

Source

pub fn on_reset<D, R>(self, is_dirty: D, reset: R) -> Self
where D: Fn(&App) -> bool + 'static, R: Fn(&mut Window, &mut App) + 'static,

Provide custom reset behavior for this field.

This is intended for SettingField::element / SettingField::render fields, whose state is managed externally and therefore not covered by the typed SettingField::default_value reset mechanism.

  • is_dirty reports whether the field differs from its default and thus whether the reset button should appear.
  • reset performs the reset.

When set, this takes precedence over the default_value based reset.

Trait Implementations§

Source§

impl<T: Clone + PartialEq + Send + Sync + 'static> AnySettingField for SettingField<T>

Source§

fn as_any(&self) -> &dyn Any

Source§

fn type_name(&self) -> &'static str

Source§

fn type_id(&self) -> TypeId

Source§

fn field_type(&self) -> &SettingFieldType

Source§

fn style(&self) -> &StyleRefinement

Source§

fn is_resettable(&self, cx: &App) -> bool

Source§

fn reset(&self, window: &mut Window, cx: &mut App)

Source§

impl<T> Styled for SettingField<T>

Source§

fn style(&mut self) -> &mut StyleRefinement

Returns a reference to the style memory of this element.
Source§

fn w(self, length: impl Clone + Into<Length>) -> Self

Sets the width of the element. Docs
Source§

fn w_0(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_0(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_0p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_0p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_7(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_7(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_8(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_8(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_9(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_9(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_10(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_10(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_11(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_11(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_16(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_16(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_20(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_20(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_24(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_24(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_32(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_32(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_40(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_40(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_48(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_48(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_56(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_56(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_64(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_64(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_72(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_72(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_80(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_80(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_96(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_96(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_112(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_112(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_128(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_128(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_auto(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_px(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_px(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_full(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_full(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_4_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_4_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_5_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_5_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn h(self, length: impl Clone + Into<Length>) -> Self

Sets the height of the element. Docs
Source§

fn h_0(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_0(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_0p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_0p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_7(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_7(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_8(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_8(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_9(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_9(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_10(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_10(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_11(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_11(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_16(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_16(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_20(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_20(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_24(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_24(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_32(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_32(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_40(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_40(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_48(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_48(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_56(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_56(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_64(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_64(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_72(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_72(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_80(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_80(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_96(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_96(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_112(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_112(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_128(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_128(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_auto(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_px(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_px(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_full(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_full(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_4_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_4_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_5_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_5_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn size(self, length: impl Clone + Into<Length>) -> Self

Sets the width and height of the element.
Source§

fn size_0(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_0(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_0p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_0p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_7(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_7(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_8(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_8(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_9(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_9(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_10(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_10(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_11(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_11(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_16(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_16(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_20(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_20(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_24(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_24(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_32(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_32(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_40(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_40(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_48(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_48(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_56(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_56(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_64(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_64(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_72(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_72(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_80(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_80(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_96(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_96(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_112(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_112(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_128(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_128(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_auto(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_px(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_px(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_full(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_full(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_4_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_4_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_5_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_5_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn min_size(self, length: impl Clone + Into<Length>) -> Self

Sets the minimum width and height of the element.
Source§

fn min_size_0(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_0(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_0p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_0p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_2(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_2(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_2p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_2p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_3(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_3(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_3p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_3p5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_6(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_6(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_7(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_7(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_8(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_8(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_9(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_9(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_10(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_10(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_11(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_11(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_12(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_12(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_16(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_16(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_20(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_20(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_24(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_24(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_32(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_32(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_40(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_40(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_48(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_48(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_56(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_56(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_64(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_64(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_72(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_72(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_80(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_80(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_96(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_96(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_112(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_112(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_128(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_128(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_auto(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_px(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_px(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_full(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_full(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1_2(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1_2(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1_3(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1_3(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_2_3(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_2_3(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_2_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_2_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_3_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_3_4(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_2_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_2_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_3_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_3_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_4_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_4_5(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1_6(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1_6(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_5_6(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_5_6(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_1_12(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_size_neg_1_12(self) -> Self

Sets the minimum width and height of the element. Read more
Source§

fn min_w(self, length: impl Clone + Into<Length>) -> Self

Sets the minimum width of the element. Docs
Source§

fn min_w_0(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_0(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_0p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_0p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_7(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_7(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_8(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_8(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_9(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_9(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_10(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_10(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_11(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_11(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_16(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_16(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_20(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_20(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_24(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_24(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_32(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_32(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_40(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_40(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_48(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_48(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_56(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_56(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_64(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_64(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_72(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_72(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_80(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_80(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_96(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_96(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_112(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_112(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_128(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_128(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_auto(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_px(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_px(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_full(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_full(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_4_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_4_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_5_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_5_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_h(self, length: impl Clone + Into<Length>) -> Self

Sets the minimum height of the element. Docs
Source§

fn min_h_0(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_0(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_0p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_0p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_7(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_7(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_8(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_8(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_9(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_9(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_10(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_10(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_11(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_11(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_16(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_16(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_20(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_20(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_24(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_24(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_32(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_32(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_40(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_40(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_48(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_48(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_56(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_56(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_64(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_64(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_72(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_72(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_80(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_80(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_96(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_96(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_112(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_112(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_128(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_128(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_auto(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_px(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_px(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_full(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_full(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_4_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_4_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_5_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_5_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn max_size(self, length: impl Clone + Into<Length>) -> Self

Sets the maximum width and height of the element.
Source§

fn max_size_0(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_0(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_0p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_0p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_2(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_2(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_2p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_2p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_3(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_3(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_3p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_3p5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_6(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_6(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_7(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_7(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_8(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_8(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_9(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_9(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_10(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_10(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_11(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_11(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_12(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_12(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_16(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_16(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_20(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_20(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_24(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_24(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_32(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_32(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_40(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_40(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_48(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_48(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_56(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_56(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_64(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_64(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_72(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_72(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_80(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_80(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_96(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_96(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_112(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_112(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_128(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_128(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_auto(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_px(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_px(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_full(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_full(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1_2(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1_2(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1_3(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1_3(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_2_3(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_2_3(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_2_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_2_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_3_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_3_4(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_2_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_2_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_3_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_3_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_4_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_4_5(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1_6(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1_6(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_5_6(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_5_6(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_1_12(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_size_neg_1_12(self) -> Self

Sets the maximum width and height of the element. Read more
Source§

fn max_w(self, length: impl Clone + Into<Length>) -> Self

Sets the maximum width of the element. Docs
Source§

fn max_w_0(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_0(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_0p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_0p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_7(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_7(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_8(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_8(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_9(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_9(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_10(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_10(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_11(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_11(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_16(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_16(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_20(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_20(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_24(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_24(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_32(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_32(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_40(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_40(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_48(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_48(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_56(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_56(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_64(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_64(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_72(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_72(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_80(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_80(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_96(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_96(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_112(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_112(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_128(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_128(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_auto(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_px(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_px(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_full(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_full(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_4_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_4_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_5_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_5_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_h(self, length: impl Clone + Into<Length>) -> Self

Sets the maximum height of the element. Docs
Source§

fn max_h_0(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_0(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_0p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_0p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_7(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_7(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_8(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_8(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_9(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_9(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_10(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_10(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_11(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_11(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_16(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_16(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_20(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_20(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_24(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_24(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_32(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_32(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_40(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_40(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_48(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_48(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_56(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_56(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_64(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_64(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_72(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_72(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_80(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_80(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_96(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_96(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_112(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_112(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_128(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_128(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_auto(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_px(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_px(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_full(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_full(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_4_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_4_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_5_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_5_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn gap(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the gap between rows and columns in flex layouts. Docs
Source§

fn gap_0(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_0(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_0p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_0p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_7(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_7(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_8(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_8(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_9(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_9(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_10(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_10(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_11(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_11(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_16(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_16(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_20(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_20(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_24(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_24(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_32(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_32(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_40(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_40(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_48(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_48(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_56(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_56(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_64(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_64(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_72(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_72(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_80(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_80(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_96(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_96(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_112(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_112(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_128(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_128(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_px(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_px(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_full(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_full(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_4_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_4_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_5_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_5_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_x(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the gap between columns in flex layouts. Docs
Source§

fn gap_x_0(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_0(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_0p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_0p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_7(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_7(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_8(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_8(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_9(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_9(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_10(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_10(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_11(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_11(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_16(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_16(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_20(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_20(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_24(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_24(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_32(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_32(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_40(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_40(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_48(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_48(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_56(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_56(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_64(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_64(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_72(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_72(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_80(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_80(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_96(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_96(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_112(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_112(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_128(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_128(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_px(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_px(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_full(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_full(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_4_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_4_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_5_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_5_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_y(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the gap between rows in flex layouts. Docs
Source§

fn gap_y_0(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_0(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_0p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_0p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_7(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_7(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_8(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_8(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_9(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_9(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_10(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_10(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_11(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_11(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_16(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_16(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_20(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_20(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_24(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_24(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_32(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_32(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_40(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_40(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_48(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_48(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_56(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_56(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_64(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_64(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_72(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_72(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_80(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_80(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_96(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_96(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_112(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_112(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_128(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_128(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_px(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_px(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_full(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_full(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_4_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_4_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_5_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_5_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn rounded(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the element. Docs
Source§

fn rounded_none(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_xs(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_sm(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_md(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_lg(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_xl(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_2xl(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_3xl(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_full(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_t(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the top side of the element. Docs
Source§

fn rounded_t_none(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_xs(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_sm(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_md(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_lg(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_xl(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_2xl(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_3xl(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_full(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_b(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the bottom side of the element. Docs
Source§

fn rounded_b_none(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_xs(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_sm(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_md(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_lg(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_xl(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_2xl(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_3xl(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_full(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_r(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the right side of the element. Docs
Source§

fn rounded_r_none(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_xs(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_sm(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_md(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_lg(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_xl(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_2xl(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_3xl(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_full(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_l(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the left side of the element. Docs
Source§

fn rounded_l_none(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_xs(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_sm(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_md(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_lg(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_xl(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_2xl(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_3xl(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_full(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_tl(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the top left corner of the element. Docs
Source§

fn rounded_tl_none(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_xs(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_sm(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_md(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_lg(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_xl(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_2xl(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_3xl(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_full(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tr(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the top right corner of the element. Docs
Source§

fn rounded_tr_none(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_xs(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_sm(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_md(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_lg(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_xl(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_2xl(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_3xl(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_full(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_bl(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the bottom left corner of the element. Docs
Source§

fn rounded_bl_none(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_xs(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_sm(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_md(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_lg(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_xl(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_2xl(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_3xl(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_full(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_br(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the bottom right corner of the element. Docs
Source§

fn rounded_br_none(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_xs(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_sm(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_md(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_lg(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_xl(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_2xl(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_3xl(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_full(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn visible(self) -> Self

Sets the visibility of the element to visible. Docs
Source§

fn invisible(self) -> Self

Sets the visibility of the element to hidden. Docs
Source§

fn m(self, length: impl Clone + Into<Length>) -> Self

Sets the margin of the element. Docs
Source§

fn m_0(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_0(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_0p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_0p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_7(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_7(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_8(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_8(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_9(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_9(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_10(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_10(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_11(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_11(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_16(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_16(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_20(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_20(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_24(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_24(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_32(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_32(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_40(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_40(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_48(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_48(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_56(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_56(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_64(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_64(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_72(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_72(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_80(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_80(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_96(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_96(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_112(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_112(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_128(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_128(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_auto(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_px(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_px(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_full(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_full(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_4_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_4_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_5_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_5_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn mt(self, length: impl Clone + Into<Length>) -> Self

Sets the top margin of the element. Docs
Source§

fn mt_0(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_0(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_0p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_0p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_7(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_7(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_8(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_8(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_9(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_9(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_10(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_10(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_11(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_11(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_16(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_16(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_20(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_20(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_24(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_24(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_32(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_32(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_40(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_40(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_48(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_48(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_56(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_56(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_64(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_64(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_72(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_72(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_80(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_80(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_96(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_96(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_112(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_112(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_128(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_128(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_auto(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_px(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_px(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_full(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_full(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_4_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_4_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_5_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_5_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mb(self, length: impl Clone + Into<Length>) -> Self

Sets the bottom margin of the element. Docs
Source§

fn mb_0(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_0(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_0p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_0p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_7(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_7(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_8(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_8(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_9(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_9(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_10(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_10(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_11(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_11(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_16(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_16(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_20(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_20(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_24(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_24(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_32(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_32(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_40(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_40(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_48(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_48(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_56(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_56(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_64(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_64(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_72(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_72(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_80(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_80(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_96(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_96(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_112(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_112(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_128(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_128(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_auto(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_px(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_px(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_full(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_full(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_4_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_4_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_5_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_5_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn my(self, length: impl Clone + Into<Length>) -> Self

Sets the vertical margin of the element. Docs
Source§

fn my_0(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_0(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_0p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_0p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_7(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_7(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_8(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_8(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_9(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_9(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_10(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_10(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_11(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_11(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_16(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_16(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_20(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_20(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_24(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_24(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_32(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_32(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_40(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_40(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_48(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_48(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_56(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_56(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_64(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_64(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_72(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_72(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_80(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_80(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_96(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_96(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_112(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_112(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_128(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_128(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_auto(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_px(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_px(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_full(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_full(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_4_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_4_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_5_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_5_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn mx(self, length: impl Clone + Into<Length>) -> Self

Sets the horizontal margin of the element. Docs
Source§

fn mx_0(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_0(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_0p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_0p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_7(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_7(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_8(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_8(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_9(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_9(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_10(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_10(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_11(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_11(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_16(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_16(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_20(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_20(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_24(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_24(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_32(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_32(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_40(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_40(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_48(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_48(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_56(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_56(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_64(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_64(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_72(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_72(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_80(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_80(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_96(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_96(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_112(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_112(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_128(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_128(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_auto(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_px(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_px(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_full(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_full(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_4_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_4_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_5_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_5_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn ml(self, length: impl Clone + Into<Length>) -> Self

Sets the left margin of the element. Docs
Source§

fn ml_0(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_0(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_0p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_0p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_7(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_7(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_8(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_8(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_9(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_9(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_10(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_10(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_11(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_11(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_16(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_16(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_20(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_20(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_24(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_24(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_32(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_32(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_40(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_40(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_48(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_48(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_56(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_56(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_64(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_64(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_72(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_72(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_80(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_80(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_96(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_96(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_112(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_112(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_128(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_128(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_auto(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_px(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_px(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_full(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_full(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_4_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_4_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_5_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_5_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn mr(self, length: impl Clone + Into<Length>) -> Self

Sets the right margin of the element. Docs
Source§

fn mr_0(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_0(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_0p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_0p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_7(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_7(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_8(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_8(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_9(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_9(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_10(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_10(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_11(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_11(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_16(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_16(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_20(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_20(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_24(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_24(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_32(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_32(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_40(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_40(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_48(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_48(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_56(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_56(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_64(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_64(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_72(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_72(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_80(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_80(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_96(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_96(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_112(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_112(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_128(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_128(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_auto(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_px(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_px(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_full(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_full(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_4_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_4_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_5_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_5_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn p(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the padding of the element. Docs
Source§

fn p_0(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_0(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_0p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_0p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_7(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_7(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_8(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_8(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_9(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_9(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_10(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_10(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_11(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_11(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_16(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_16(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_20(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_20(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_24(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_24(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_32(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_32(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_40(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_40(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_48(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_48(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_56(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_56(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_64(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_64(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_72(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_72(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_80(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_80(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_96(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_96(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_112(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_112(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_128(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_128(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_px(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_px(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_full(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_full(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_4_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_4_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_5_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_5_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn pt(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the top padding of the element. Docs
Source§

fn pt_0(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_0(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_0p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_0p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_7(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_7(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_8(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_8(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_9(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_9(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_10(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_10(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_11(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_11(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_16(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_16(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_20(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_20(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_24(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_24(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_32(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_32(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_40(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_40(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_48(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_48(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_56(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_56(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_64(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_64(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_72(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_72(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_80(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_80(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_96(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_96(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_112(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_112(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_128(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_128(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_px(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_px(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_full(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_full(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_4_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_4_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_5_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_5_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pb(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the bottom padding of the element. Docs
Source§

fn pb_0(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_0(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_0p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_0p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_7(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_7(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_8(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_8(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_9(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_9(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_10(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_10(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_11(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_11(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_16(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_16(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_20(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_20(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_24(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_24(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_32(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_32(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_40(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_40(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_48(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_48(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_56(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_56(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_64(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_64(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_72(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_72(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_80(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_80(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_96(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_96(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_112(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_112(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_128(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_128(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_px(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_px(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_full(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_full(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_4_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_4_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_5_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_5_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn px(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the horizontal padding of the element. Docs
Source§

fn px_0(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_0(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_0p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_0p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_7(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_7(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_8(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_8(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_9(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_9(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_10(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_10(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_11(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_11(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_16(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_16(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_20(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_20(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_24(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_24(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_32(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_32(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_40(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_40(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_48(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_48(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_56(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_56(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_64(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_64(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_72(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_72(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_80(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_80(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_96(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_96(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_112(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_112(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_128(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_128(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_px(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_px(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_full(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_full(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_4_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_4_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_5_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_5_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn py(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the vertical padding of the element. Docs
Source§

fn py_0(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_0(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_0p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_0p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_7(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_7(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_8(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_8(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_9(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_9(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_10(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_10(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_11(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_11(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_16(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_16(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_20(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_20(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_24(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_24(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_32(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_32(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_40(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_40(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_48(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_48(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_56(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_56(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_64(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_64(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_72(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_72(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_80(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_80(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_96(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_96(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_112(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_112(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_128(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_128(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_px(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_px(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_full(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_full(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_4_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_4_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_5_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_5_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn pl(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the left padding of the element. Docs
Source§

fn pl_0(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_0(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_0p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_0p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_7(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_7(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_8(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_8(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_9(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_9(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_10(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_10(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_11(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_11(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_16(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_16(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_20(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_20(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_24(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_24(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_32(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_32(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_40(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_40(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_48(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_48(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_56(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_56(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_64(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_64(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_72(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_72(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_80(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_80(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_96(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_96(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_112(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_112(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_128(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_128(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_px(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_px(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_full(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_full(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_4_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_4_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_5_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_5_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pr(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the right padding of the element. Docs
Source§

fn pr_0(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_0(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_0p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_0p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_7(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_7(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_8(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_8(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_9(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_9(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_10(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_10(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_11(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_11(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_16(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_16(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_20(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_20(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_24(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_24(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_32(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_32(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_40(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_40(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_48(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_48(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_56(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_56(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_64(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_64(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_72(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_72(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_80(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_80(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_96(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_96(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_112(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_112(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_128(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_128(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_px(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_px(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_full(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_full(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_4_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_4_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_5_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_5_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn relative(self) -> Self

Sets the position of the element to relative. Docs
Source§

fn absolute(self) -> Self

Sets the position of the element to absolute. Docs
Source§

fn inset(self, length: impl Clone + Into<Length>) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs
Source§

fn inset_0(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_0(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_0p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_0p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_7(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_7(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_8(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_8(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_9(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_9(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_10(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_10(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_11(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_11(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_16(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_16(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_20(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_20(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_24(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_24(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_32(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_32(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_40(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_40(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_48(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_48(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_56(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_56(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_64(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_64(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_72(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_72(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_80(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_80(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_96(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_96(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_112(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_112(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_128(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_128(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_auto(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_px(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_px(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_full(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_full(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_4_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_4_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_5_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_5_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn top(self, length: impl Clone + Into<Length>) -> Self

Sets the top value of a positioned element. Docs
Source§

fn top_0(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_0(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_0p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_0p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_7(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_7(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_8(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_8(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_9(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_9(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_10(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_10(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_11(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_11(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_16(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_16(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_20(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_20(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_24(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_24(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_32(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_32(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_40(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_40(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_48(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_48(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_56(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_56(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_64(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_64(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_72(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_72(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_80(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_80(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_96(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_96(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_112(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_112(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_128(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_128(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_auto(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_px(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_px(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_full(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_full(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_4_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_4_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_5_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_5_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn bottom(self, length: impl Clone + Into<Length>) -> Self

Sets the bottom value of a positioned element. Docs
Source§

fn bottom_0(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_0(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_0p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_0p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_7(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_7(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_8(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_8(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_9(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_9(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_10(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_10(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_11(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_11(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_16(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_16(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_20(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_20(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_24(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_24(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_32(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_32(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_40(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_40(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_48(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_48(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_56(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_56(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_64(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_64(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_72(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_72(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_80(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_80(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_96(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_96(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_112(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_112(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_128(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_128(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_auto(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_px(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_px(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_full(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_full(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_4_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_4_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_5_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_5_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn left(self, length: impl Clone + Into<Length>) -> Self

Sets the left value of a positioned element. Docs
Source§

fn left_0(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_0(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_0p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_0p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_7(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_7(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_8(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_8(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_9(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_9(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_10(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_10(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_11(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_11(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_16(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_16(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_20(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_20(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_24(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_24(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_32(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_32(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_40(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_40(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_48(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_48(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_56(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_56(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_64(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_64(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_72(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_72(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_80(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_80(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_96(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_96(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_112(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_112(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_128(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_128(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_auto(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_px(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_px(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_full(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_full(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_4_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_4_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_5_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_5_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn right(self, length: impl Clone + Into<Length>) -> Self

Sets the right value of a positioned element. Docs
Source§

fn right_0(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_0(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_0p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_0p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_7(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_7(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_8(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_8(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_9(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_9(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_10(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_10(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_11(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_11(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_16(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_16(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_20(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_20(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_24(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_24(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_32(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_32(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_40(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_40(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_48(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_48(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_56(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_56(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_64(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_64(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_72(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_72(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_80(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_80(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_96(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_96(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_112(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_112(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_128(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_128(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_auto(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_px(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_px(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_full(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_full(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_4_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_4_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_5_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_5_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn overflow_hidden(self) -> Self

Sets the behavior of content that overflows the container to be hidden. Docs
Source§

fn overflow_x_hidden(self) -> Self

Sets the behavior of content that overflows the container on the X axis to be hidden. Docs
Source§

fn overflow_y_hidden(self) -> Self

Sets the behavior of content that overflows the container on the Y axis to be hidden. Docs
Source§

fn cursor(self, cursor: CursorStyle) -> Self

Set the cursor style when hovering over this element
Source§

fn cursor_default(self) -> Self

Sets the cursor style when hovering an element to default. Docs
Source§

fn cursor_pointer(self) -> Self

Sets the cursor style when hovering an element to pointer. Docs
Source§

fn cursor_text(self) -> Self

Sets cursor style when hovering over an element to text. Docs
Source§

fn cursor_move(self) -> Self

Sets cursor style when hovering over an element to move. Docs
Source§

fn cursor_not_allowed(self) -> Self

Sets cursor style when hovering over an element to not-allowed. Docs
Source§

fn cursor_context_menu(self) -> Self

Sets cursor style when hovering over an element to context-menu. Docs
Source§

fn cursor_crosshair(self) -> Self

Sets cursor style when hovering over an element to crosshair. Docs
Source§

fn cursor_vertical_text(self) -> Self

Sets cursor style when hovering over an element to vertical-text. Docs
Source§

fn cursor_alias(self) -> Self

Sets cursor style when hovering over an element to alias. Docs
Source§

fn cursor_copy(self) -> Self

Sets cursor style when hovering over an element to copy. Docs
Source§

fn cursor_no_drop(self) -> Self

Sets cursor style when hovering over an element to no-drop. Docs
Source§

fn cursor_grab(self) -> Self

Sets cursor style when hovering over an element to grab. Docs
Source§

fn cursor_grabbing(self) -> Self

Sets cursor style when hovering over an element to grabbing. Docs
Source§

fn cursor_ew_resize(self) -> Self

Sets cursor style when hovering over an element to ew-resize. Docs
Source§

fn cursor_ns_resize(self) -> Self

Sets cursor style when hovering over an element to ns-resize. Docs
Source§

fn cursor_nesw_resize(self) -> Self

Sets cursor style when hovering over an element to nesw-resize. Docs
Source§

fn cursor_nwse_resize(self) -> Self

Sets cursor style when hovering over an element to nwse-resize. Docs
Source§

fn cursor_col_resize(self) -> Self

Sets cursor style when hovering over an element to col-resize. Docs
Source§

fn cursor_row_resize(self) -> Self

Sets cursor style when hovering over an element to row-resize. Docs
Source§

fn cursor_n_resize(self) -> Self

Sets cursor style when hovering over an element to n-resize. Docs
Source§

fn cursor_e_resize(self) -> Self

Sets cursor style when hovering over an element to e-resize. Docs
Source§

fn cursor_s_resize(self) -> Self

Sets cursor style when hovering over an element to s-resize. Docs
Source§

fn cursor_w_resize(self) -> Self

Sets cursor style when hovering over an element to w-resize. Docs
Source§

fn border_color<C>(self, border_color: C) -> Self
where C: Into<Hsla>, Self: Sized,

Sets the border color of the element.
Source§

fn border(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the element. Docs
Source§

fn border_0(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_1(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_2(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_3(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_4(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_5(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_6(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_7(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_8(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_9(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_10(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_11(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_12(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_16(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_20(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_24(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_32(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_t(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the top side of the element. Docs
Source§

fn border_t_0(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_1(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_2(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_3(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_4(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_5(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_6(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_7(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_8(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_9(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_10(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_11(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_12(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_16(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_20(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_24(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_32(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_b(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the bottom side of the element. Docs
Source§

fn border_b_0(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_1(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_2(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_3(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_4(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_5(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_6(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_7(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_8(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_9(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_10(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_11(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_12(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_16(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_20(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_24(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_32(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_r(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the right side of the element. Docs
Source§

fn border_r_0(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_1(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_2(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_3(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_4(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_5(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_6(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_7(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_8(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_9(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_10(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_11(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_12(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_16(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_20(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_24(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_32(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_l(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the left side of the element. Docs
Source§

fn border_l_0(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_1(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_2(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_3(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_4(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_5(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_6(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_7(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_8(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_9(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_10(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_11(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_12(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_16(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_20(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_24(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_32(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_x(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the vertical sides of the element. Docs
Source§

fn border_x_0(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_1(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_2(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_3(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_4(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_5(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_6(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_7(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_8(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_9(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_10(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_11(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_12(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_16(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_20(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_24(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_32(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_y(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the horizontal sides of the element. Docs
Source§

fn border_y_0(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_1(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_2(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_3(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_4(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_5(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_6(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_7(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_8(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_9(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_10(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_11(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_12(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_16(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_20(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_24(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_32(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn shadow(self, shadows: Vec<BoxShadow>) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_none(self) -> Self

Clears the box shadow of the element. Docs
Source§

fn shadow_2xs(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_xs(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_sm(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_md(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_lg(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_xl(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_2xl(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn block(self) -> Self

Sets the display type of the element to block. Docs
Source§

fn flex(self) -> Self

Sets the display type of the element to flex. Docs
Source§

fn grid(self) -> Self

Sets the display type of the element to grid. Docs
Source§

fn hidden(self) -> Self

Sets the display type of the element to none. Docs
Source§

fn scrollbar_width(self, width: impl Into<AbsoluteLength>) -> Self

Set the space to be reserved for rendering the scrollbar. Read more
Source§

fn whitespace_normal(self) -> Self

Sets the whitespace of the element to normal. Docs
Source§

fn whitespace_nowrap(self) -> Self

Sets the whitespace of the element to nowrap. Docs
Source§

fn text_ellipsis(self) -> Self

Sets the truncate overflowing text with an ellipsis (…) at the end if needed. Docs
Source§

fn text_ellipsis_start(self) -> Self

Sets the truncate overflowing text with an ellipsis (…) at the start if needed. Typically more adequate for file paths where the end is more important than the beginning. Note: This doesn’t exist in Tailwind CSS.
Source§

fn text_ellipsis_middle(self) -> Self

Sets the truncate overflowing text with an ellipsis (…) in the middle if needed. Preserves the beginning and end of the text. Useful for filenames. Note: This doesn’t exist in Tailwind CSS.
Source§

fn text_overflow(self, overflow: TextOverflow) -> Self

Sets the text overflow behavior of the element.
Source§

fn text_align(self, align: TextAlign) -> Self

Set the text alignment of the element.
Source§

fn text_left(self) -> Self

Sets the text alignment to left
Source§

fn text_center(self) -> Self

Sets the text alignment to center
Source§

fn text_right(self) -> Self

Sets the text alignment to right
Source§

fn truncate(self) -> Self

Sets the truncate to prevent text from wrapping and truncate overflowing text with an ellipsis (…) if needed. Docs
Source§

fn line_clamp(self, lines: usize) -> Self

Sets number of lines to show before truncating the text. Docs
Source§

fn flex_col(self) -> Self

Sets the flex direction of the element to column. Docs
Source§

fn flex_col_reverse(self) -> Self

Sets the flex direction of the element to column-reverse. Docs
Source§

fn flex_row(self) -> Self

Sets the flex direction of the element to row. Docs
Source§

fn flex_row_reverse(self) -> Self

Sets the flex direction of the element to row-reverse. Docs
Source§

fn flex_1(self) -> Self

Sets the element to allow a flex item to grow and shrink as needed, ignoring its initial size. Docs
Source§

fn flex_auto(self) -> Self

Sets the element to allow a flex item to grow and shrink, taking into account its initial size. Docs
Source§

fn flex_initial(self) -> Self

Sets the element to allow a flex item to shrink but not grow, taking into account its initial size. Docs
Source§

fn flex_none(self) -> Self

Sets the element to prevent a flex item from growing or shrinking. Docs
Source§

fn flex_basis(self, basis: impl Into<Length>) -> Self

Sets the initial size of flex items for this element. Docs
Source§

fn flex_grow(self, grow: f32) -> Self

Sets the flex item’s grow factor. Docs
Source§

fn flex_grow_0(self) -> Self

Disables flex item growth (flex-grow: 0). Docs
Source§

fn flex_grow_1(self) -> Self

Enables flex item growth (flex-grow: 1). Docs
Source§

fn flex_shrink(self, shrink: f32) -> Self

Sets the flex item’s shrink factor. Docs
Source§

fn flex_shrink_0(self) -> Self

Disables flex item shrinking (flex-shrink: 0). Docs
Source§

fn flex_shrink_1(self) -> Self

Enables flex item shrinking (flex-shrink: 1). Docs
Source§

fn flex_wrap(self) -> Self

Sets the element to allow flex items to wrap. Docs
Source§

fn flex_wrap_reverse(self) -> Self

Sets the element wrap flex items in the reverse direction. Docs
Source§

fn flex_nowrap(self) -> Self

Sets the element to prevent flex items from wrapping, causing inflexible items to overflow the container if necessary. Docs
Source§

fn items_start(self) -> Self

Sets the element to align flex items to the start of the container’s cross axis. Docs
Source§

fn items_end(self) -> Self

Sets the element to align flex items to the end of the container’s cross axis. Docs
Source§

fn items_center(self) -> Self

Sets the element to align flex items along the center of the container’s cross axis. Docs
Source§

fn items_baseline(self) -> Self

Sets the element to align flex items along the baseline of the container’s cross axis. Docs
Source§

fn items_stretch(self) -> Self

Sets the element to stretch flex items to fill the available space along the container’s cross axis. Docs
Source§

fn self_start(self) -> Self

Sets how this specific element is aligned along the container’s cross axis. Docs
Source§

fn self_end(self) -> Self

Sets this element to align against the end of the container’s cross axis. Docs
Source§

fn self_flex_start(self) -> Self

Sets this element to align against the start of the container’s cross axis. Docs
Source§

fn self_flex_end(self) -> Self

Sets this element to align against the end of the container’s cross axis. Docs
Source§

fn self_center(self) -> Self

Sets this element to align along the center of the container’s cross axis. Docs
Source§

fn self_baseline(self) -> Self

Sets this element to align along the baseline of the container’s cross axis. Docs
Source§

fn self_stretch(self) -> Self

Sets this element to stretch to fill the available space along the container’s cross axis. Docs
Source§

fn justify_start(self) -> Self

Sets the element to justify flex items against the start of the container’s main axis. Docs
Source§

fn justify_end(self) -> Self

Sets the element to justify flex items against the end of the container’s main axis. Docs
Source§

fn justify_center(self) -> Self

Sets the element to justify flex items along the center of the container’s main axis. Docs
Source§

fn justify_between(self) -> Self

Sets the element to justify flex items along the container’s main axis such that there is an equal amount of space between each item. Docs
Source§

fn justify_around(self) -> Self

Sets the element to justify items along the container’s main axis such that there is an equal amount of space on each side of each item. Docs
Source§

fn justify_evenly(self) -> Self

Sets the element to justify items along the container’s main axis such that there is an equal amount of space around each item, but also accounting for the doubling of space you would normally see between each item when using justify-around. Docs
Source§

fn content_normal(self) -> Self

Sets the element to pack content items in their default position as if no align-content value was set. Docs
Source§

fn content_center(self) -> Self

Sets the element to pack content items in the center of the container’s cross axis. Docs
Source§

fn content_start(self) -> Self

Sets the element to pack content items against the start of the container’s cross axis. Docs
Source§

fn content_end(self) -> Self

Sets the element to pack content items against the end of the container’s cross axis. Docs
Source§

fn content_between(self) -> Self

Sets the element to pack content items along the container’s cross axis such that there is an equal amount of space between each item. Docs
Source§

fn content_around(self) -> Self

Sets the element to pack content items along the container’s cross axis such that there is an equal amount of space on each side of each item. Docs
Source§

fn content_evenly(self) -> Self

Sets the element to pack content items along the container’s cross axis such that there is an equal amount of space between each item. Docs
Source§

fn content_stretch(self) -> Self

Sets the element to allow content items to fill the available space along the container’s cross axis. Docs
Source§

fn aspect_ratio(self, ratio: f32) -> Self

Sets the aspect ratio of the element. Docs
Source§

fn aspect_square(self) -> Self

Sets the aspect ratio of the element to 1/1 – equal width and height. Docs
Source§

fn bg<F>(self, fill: F) -> Self
where F: Into<Fill>, Self: Sized,

Sets the background color of the element.
Source§

fn border_dashed(self) -> Self

Sets the border style of the element.
Source§

fn text_style(&mut self) -> &mut TextStyleRefinement

Returns a mutable reference to the text style that has been configured on this element.
Source§

fn text_color(self, color: impl Into<Hsla>) -> Self

Sets the text color of this element. Read more
Source§

fn font_weight(self, weight: FontWeight) -> Self

Sets the font weight of this element Read more
Source§

fn text_bg(self, bg: impl Into<Hsla>) -> Self

Sets the background color of this element. Read more
Source§

fn text_size(self, size: impl Into<AbsoluteLength>) -> Self

Sets the text size of this element. Read more
Source§

fn text_xs(self) -> Self

Sets the text size to ‘extra small’. Docs
Source§

fn text_sm(self) -> Self

Sets the text size to ‘small’. Docs
Source§

fn text_base(self) -> Self

Sets the text size to ‘base’. Docs
Source§

fn text_lg(self) -> Self

Sets the text size to ‘large’. Docs
Source§

fn text_xl(self) -> Self

Sets the text size to ‘extra large’. Docs
Source§

fn text_2xl(self) -> Self

Sets the text size to ‘extra extra large’. Docs
Source§

fn text_3xl(self) -> Self

Sets the text size to ‘extra extra extra large’. Docs
Source§

fn italic(self) -> Self

Sets the font style of the element to italic. Docs
Source§

fn not_italic(self) -> Self

Sets the font style of the element to normal (not italic). Docs
Source§

fn underline(self) -> Self

Sets the text decoration to underline. Docs
Source§

fn line_through(self) -> Self

Sets the decoration of the text to have a line through it. Docs
Source§

fn text_decoration_none(self) -> Self

Removes the text decoration on this element. Read more
Source§

fn text_decoration_color(self, color: impl Into<Hsla>) -> Self

Sets the color for the underline on this element
Source§

fn text_decoration_solid(self) -> Self

Sets the text decoration style to a solid line. Docs
Source§

fn text_decoration_wavy(self) -> Self

Sets the text decoration style to a wavy line. Docs
Source§

fn text_decoration_0(self) -> Self

Sets the text decoration to be 0px thick. Docs
Source§

fn text_decoration_1(self) -> Self

Sets the text decoration to be 1px thick. Docs
Source§

fn text_decoration_2(self) -> Self

Sets the text decoration to be 2px thick. Docs
Source§

fn text_decoration_4(self) -> Self

Sets the text decoration to be 4px thick. Docs
Source§

fn text_decoration_8(self) -> Self

Sets the text decoration to be 8px thick. Docs
Source§

fn font_family(self, family_name: impl Into<SharedString>) -> Self

Sets the font family of this element and its children.
Source§

fn font_features(self, features: FontFeatures) -> Self

Sets the font features of this element and its children.
Source§

fn font(self, font: Font) -> Self

Sets the font of this element and its children.
Source§

fn line_height(self, line_height: impl Into<DefiniteLength>) -> Self

Sets the line height of this element and its children.
Source§

fn opacity(self, opacity: f32) -> Self

Sets the opacity of this element and its children.
Source§

fn grid_cols(self, cols: u16) -> Self

Sets the grid columns of this element.
Source§

fn grid_cols_min_content(self, cols: u16) -> Self

Sets the grid columns with min-content minimum sizing. Unlike grid_cols, it won’t shrink to width 0 in AvailableSpace::MinContent constraints.
Source§

fn grid_cols_max_content(self, cols: u16) -> Self

Sets the grid columns with max-content maximum sizing for content-based column widths.
Source§

fn grid_rows(self, rows: u16) -> Self

Sets the grid rows of this element.
Source§

fn grid_rows_min_content(self, rows: u16) -> Self

Sets the grid rows with min-content minimum sizing. Unlike grid_rows, it won’t shrink to height 0 in AvailableSpace::MinContent constraints.
Source§

fn grid_rows_max_content(self, rows: u16) -> Self

Sets the grid rows with max-content maximum sizing for content-based row heights.
Source§

fn col_start(self, start: i16) -> Self

Sets the column start of this element.
Source§

fn col_start_auto(self) -> Self

Sets the column start of this element to auto.
Source§

fn col_end(self, end: i16) -> Self

Sets the column end of this element.
Source§

fn col_end_auto(self) -> Self

Sets the column end of this element to auto.
Source§

fn col_span(self, span: u16) -> Self

Sets the column span of this element.
Source§

fn col_span_full(self) -> Self

Sets the row span of this element.
Source§

fn row_start(self, start: i16) -> Self

Sets the row start of this element.
Source§

fn row_start_auto(self) -> Self

Sets the row start of this element to “auto”
Source§

fn row_end(self, end: i16) -> Self

Sets the row end of this element.
Source§

fn row_end_auto(self) -> Self

Sets the row end of this element to “auto”
Source§

fn row_span(self, span: u16) -> Self

Sets the row span of this element.
Source§

fn row_span_full(self) -> Self

Sets the row span of this element.
Source§

fn debug(self) -> Self

Draws a debug border around this element.
Source§

fn debug_below(self) -> Self

Draws a debug border on all conforming elements below this element.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for SettingField<T>

§

impl<T> !Send for SettingField<T>

§

impl<T> !Sync for SettingField<T>

§

impl<T> !UnwindSafe for SettingField<T>

§

impl<T> Freeze for SettingField<T>
where Rc<dyn Fn(&App) -> T>: Freeze, Rc<dyn Fn(T, &mut App)>: Freeze, Option<T>: Freeze,

§

impl<T> Unpin for SettingField<T>
where Rc<dyn Fn(&App) -> T>: Unpin, Rc<dyn Fn(T, &mut App)>: Unpin, Option<T>: Unpin,

§

impl<T> UnsafeUnpin for SettingField<T>
where Rc<dyn Fn(&App) -> T>: UnsafeUnpin, Rc<dyn Fn(T, &mut App)>: UnsafeUnpin, Option<T>: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> StyleSized<T> for T
where T: Styled,

Source§

fn input_text_size(self, size: Size) -> T

Source§

fn input_size(self, size: Size) -> T

Source§

fn input_pl(self, size: Size) -> T

Source§

fn input_pr(self, size: Size) -> T

Source§

fn input_px(self, size: Size) -> T

Source§

fn input_py(self, size: Size) -> T

Source§

fn input_h(self, size: Size) -> T

Source§

fn list_size(self, size: Size) -> T

Source§

fn list_px(self, size: Size) -> T

Source§

fn list_py(self, size: Size) -> T

Source§

fn size_with(self, size: Size) -> T

Apply size with the given Size.
Source§

fn table_cell_size(self, size: Size) -> T

Apply the table cell size (Font size, padding) with the given Size.
Source§

fn button_text_size(self, size: Size) -> T

Source§

impl<E> StyledExt for E
where E: Styled,

Source§

fn refine_style(self, style: &StyleRefinement) -> Self

Source§

fn h_flex(self) -> Self

Lays children out in a row, centered on the cross axis. Read more
Source§

fn v_flex(self) -> Self

Lays children out in a column, stretching them across the cross axis. Read more
Source§

fn paddings<L>(self, paddings: impl Into<Edges<L>>) -> Self

Source§

fn margins<L>(self, margins: impl Into<Edges<L>>) -> Self

Source§

fn debug_red(self) -> Self

Source§

fn debug_blue(self) -> Self

Source§

fn debug_yellow(self) -> Self

Source§

fn debug_green(self) -> Self

Source§

fn debug_pink(self) -> Self

Source§

fn debug_focused( self, focus_handle: &FocusHandle, window: &Window, cx: &App, ) -> Self

Source§

fn font_thin(self) -> Self

Source§

fn font_extralight(self) -> Self

Source§

fn font_light(self) -> Self

Source§

fn font_normal(self) -> Self

Source§

fn font_medium(self) -> Self

Source§

fn font_semibold(self) -> Self

Source§

fn font_bold(self) -> Self

Source§

fn font_extrabold(self) -> Self

Source§

fn font_black(self) -> Self

Source§

fn corner_radii(self, radius: Corners<Pixels>) -> Self

Source§

impl<T> ThemeStyled for T
where T: Styled,

Source§

fn focus_ring_style(self, window: &Window, cx: &App) -> T
where T: ParentElement,

Draw the focus ring the framework’s own controls use.

Calling this turns the ring on; gate it with when for the conditions that decide whether the control shows one at all — its focus state, crate::FocusableExt::focus_ring, appearance, and so on.

The ring sits outside the element’s border, so an ancestor that clips its content will cut it off — leave it a few pixels of room, or don’t clip.

Source§

fn popover_style(self, cx: &App) -> T

Give this element the surface, edge, shadow and radius of a popover. Read more
Source§

fn rounded_full_style(self, cx: &App) -> Self

Round this element as far as its size allows — a circle if it is square, a pill if it is not — unless the theme squares its corners. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more