Skip to main content

Alert

Struct Alert 

Source
pub struct Alert { /* private fields */ }
Expand description

Alert used to display a message to the user.

Implementations§

Source§

impl Alert

Source

pub fn new(id: impl Into<ElementId>, message: impl Into<Text>) -> Self

Create a new alert with the given message.

Source

pub fn info(id: impl Into<ElementId>, message: impl Into<Text>) -> Self

Create a new info AlertVariant::Info with the given message.

Source

pub fn success(id: impl Into<ElementId>, message: impl Into<Text>) -> Self

Create a new AlertVariant::Success alert with the given message.

Source

pub fn warning(id: impl Into<ElementId>, message: impl Into<Text>) -> Self

Create a new AlertVariant::Warning alert with the given message.

Source

pub fn error(id: impl Into<ElementId>, message: impl Into<Text>) -> Self

Create a new AlertVariant::Error alert with the given message.

Source

pub fn with_variant(self, variant: AlertVariant) -> Self

Sets the AlertVariant of the alert.

Source

pub fn icon(self, icon: impl Into<Icon>) -> Self

Set the icon for the alert.

Source

pub fn title(self, title: impl Into<SharedString>) -> Self

Set the title for the alert.

Source

pub fn banner(self) -> Self

Set alert as banner style.

The banner style will make the alert take the full width of the container and not border and radius. This mode will not display title.

Source

pub fn visible(self, visible: bool) -> Self

Set the visibility of the alert.

Source

pub fn on_close( self, on_close: impl Fn(&ClickEvent, &mut Window, &mut App) + 'static, ) -> Self

Set alert as closable, true will show Close icon.

Trait Implementations§

Source§

impl IntoElement for Alert

Source§

type Element = Component<Alert>

The specific type of element into which the implementing type is converted. Useful for converting other types into elements automatically, like Strings
Source§

fn into_element(self) -> Self::Element

Convert self into a type that implements Element.
Source§

fn into_any_element(self) -> AnyElement

Convert self into a dynamically-typed AnyElement.
Source§

impl RenderOnce for Alert

Source§

fn render(self, _: &mut Window, cx: &mut App) -> impl IntoElement

Render this component into an element tree. Note that this method takes ownership of self, as compared to Render::render() method which takes a mutable reference.
Source§

impl Sizable for Alert

Source§

fn with_size(self, size: impl Into<Size>) -> Self

Set the ui::Size of this element. Read more
Source§

fn xsmall(self) -> Self

Set to Size::XSmall
Source§

fn small(self) -> Self

Set to Size::Small
Source§

fn large(self) -> Self

Set to Size::Large
Source§

impl Styled for Alert

Source§

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

返回此元素样式内存的引用。
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

将元素的显示类型设置为 block文档
Source§

fn flex(self) -> Self

将元素的显示类型设置为 flex文档
Source§

fn grid(self) -> Self

将元素的显示类型设置为 grid文档
Source§

fn hidden(self) -> Self

将元素的显示类型设置为 none文档
Source§

fn scrollbar_width(self, width: impl Into<AbsoluteLength>) -> Self

设置用于渲染滚动条的空间。 Read more
Source§

fn whitespace_normal(self) -> Self

将元素的空白设置为 normal文档
Source§

fn whitespace_nowrap(self) -> Self

将元素的空白设置为 nowrap文档
Source§

fn text_ellipsis(self) -> Self

设置如果需要则用省略号 (…) 截断溢出的文本。 文档
Source§

fn text_ellipsis_start(self) -> Self

设置如果需要则在开头用省略号 (…) 截断溢出的文本。 通常更适合文件路径,因为结尾比开头更重要。 注意:这在 Tailwind CSS 中不存在。
Source§

fn text_ellipsis_middle(self) -> Self

设置如果需要则在中间用省略号 (…) 截断溢出的文本。 保留文本的开头和结尾。适用于文件名。 注意:这在 Tailwind CSS 中不存在。
Source§

fn text_overflow(self, overflow: TextOverflow) -> Self

设置元素的文本溢出行为。
Source§

fn text_align(self, align: TextAlign) -> Self

设置元素的对齐方式。
Source§

fn text_left(self) -> Self

将文本对齐设置为左
Source§

fn text_center(self) -> Self

将文本对齐设置为居中
Source§

fn text_right(self) -> Self

将文本对齐设置为右
Source§

fn truncate(self) -> Self

设置截断以防止文本换行,并在需要时用省略号 (…) 截断溢出的文本。 文档
Source§

fn line_clamp(self, lines: usize) -> Self

设置截断文本前显示的行数。 文档
Source§

fn flex_col(self) -> Self

将元素的 flex 方向设置为 column文档
Source§

fn flex_col_reverse(self) -> Self

将元素的 flex 方向设置为 column-reverse文档
Source§

fn flex_row(self) -> Self

将元素的 flex 方向设置为 row文档
Source§

fn flex_row_reverse(self) -> Self

将元素的 flex 方向设置为 row-reverse文档
Source§

fn flex_1(self) -> Self

设置元素允许 flex 项目根据需要增长和收缩,忽略其初始大小。 文档
Source§

fn flex_auto(self) -> Self

设置元素允许 flex 项目增长和收缩,考虑其初始大小。 文档
Source§

fn flex_initial(self) -> Self

设置元素允许 flex 项目收缩但不增长,考虑其初始大小。 文档
Source§

fn flex_none(self) -> Self

设置元素防止 flex 项目增长或收缩。 文档
Source§

fn flex_basis(self, basis: impl Into<Length>) -> Self

设置此元素的 flex 项目的初始大小。 文档
Source§

fn flex_grow(self) -> Self

设置元素允许 flex 项目增长以填充任何可用空间。 文档
Source§

fn flex_grow_0(self) -> Self

设置元素防止 flex 项目增长。 文档
Source§

fn flex_shrink(self) -> Self

设置元素允许 flex 项目在需要时收缩。 文档
Source§

fn flex_shrink_0(self) -> Self

设置元素防止 flex 项目收缩。 文档
Source§

fn flex_wrap(self) -> Self

设置元素允许 flex 项目换行。 文档
Source§

fn flex_wrap_reverse(self) -> Self

设置元素以相反方向换行 flex 项目。 文档
Source§

fn flex_nowrap(self) -> Self

设置元素防止 flex 项目换行,导致不可变项目在必要时溢出容器。 文档
Source§

fn items_start(self) -> Self

设置元素将 flex 项目对齐到容器交叉轴的起始位置。 文档
Source§

fn items_end(self) -> Self

设置元素将 flex 项目对齐到容器交叉轴的末尾。 文档
Source§

fn items_center(self) -> Self

设置元素将 flex 项目沿容器交叉轴的中心对齐。 文档
Source§

fn items_baseline(self) -> Self

设置元素将 flex 项目沿容器交叉轴的基线对齐。 文档
Source§

fn items_stretch(self) -> Self

设置元素拉伸 flex 项目以填充容器交叉轴的可用空间。 文档
Source§

fn self_start(self) -> Self

设置此特定元素如何沿容器交叉轴对齐。 文档
Source§

fn self_end(self) -> Self

设置此元素对齐到容器交叉轴的末尾。 文档
Source§

fn self_flex_start(self) -> Self

设置此元素对齐到容器交叉轴的起始位置。 文档
Source§

fn self_flex_end(self) -> Self

设置此元素对齐到容器交叉轴的末尾。 文档
Source§

fn self_center(self) -> Self

设置此元素沿容器交叉轴的中心对齐。 文档
Source§

fn self_baseline(self) -> Self

设置此元素沿容器交叉轴的基线对齐。 文档
Source§

fn self_stretch(self) -> Self

设置此元素拉伸以填充容器交叉轴的可用空间。 文档
Source§

fn justify_start(self) -> Self

设置元素将 flex 项目对齐到容器主轴的起始位置。 文档
Source§

fn justify_end(self) -> Self

设置元素将 flex 项目对齐到容器主轴的末尾。 文档
Source§

fn justify_center(self) -> Self

设置元素将 flex 项目沿容器主轴的中心对齐。 文档
Source§

fn justify_between(self) -> Self

设置元素将 flex 项目沿容器主轴对齐,使得每个项目之间有相等的空间。 文档
Source§

fn justify_around(self) -> Self

设置元素将项目沿容器主轴对齐,使得每个项目两侧有相等的空间。 文档
Source§

fn justify_evenly(self) -> Self

设置元素将项目沿容器主轴对齐,使得每个项目周围有相等的空间,同时 考虑到使用 justify-around 时通常会在每个项目之间看到的空间加倍。 文档
Source§

fn content_normal(self) -> Self

设置元素将内容项目打包到其默认位置,就像未设置 align-content 值一样。 文档
Source§

fn content_center(self) -> Self

设置元素将内容项目打包到容器交叉轴的中心。 文档
Source§

fn content_start(self) -> Self

设置元素将内容项目打包到容器交叉轴的起始位置。 文档
Source§

fn content_end(self) -> Self

设置元素将内容项目打包到容器交叉轴的末尾。 文档
Source§

fn content_between(self) -> Self

设置元素将内容项目沿容器交叉轴打包,使得每个项目之间有相等的空间。 文档
Source§

fn content_around(self) -> Self

设置元素将内容项目沿容器交叉轴打包,使得每个项目两侧有相等的空间。 文档
Source§

fn content_evenly(self) -> Self

设置元素将内容项目沿容器交叉轴打包,使得每个项目之间有相等的空间。 文档
Source§

fn content_stretch(self) -> Self

设置元素允许内容项目填充容器交叉轴的可用空间。 文档
Source§

fn aspect_ratio(self, ratio: f32) -> Self

设置元素的宽高比。 文档
Source§

fn aspect_square(self) -> Self

将元素的宽高比设置为 1/1 —— 等宽等高。 文档
Source§

fn bg<F>(self, fill: F) -> Self
where F: Into<Fill>, Self: Sized,

设置元素的背景颜色。
Source§

fn border_dashed(self) -> Self

设置元素的边框样式。
Source§

fn continuous_corners(self) -> Self

启用连续(圆角)角舍入而不是圆形。 这会产生平滑的 Apple 风格圆角,匹配 SwiftUI 的连续角样式。
Source§

fn text_style(&mut self) -> &mut TextStyleRefinement

返回已在此元素上配置的文本样式的可变引用。
Source§

fn text_color(self, color: impl Into<Hsla>) -> Self

设置此元素的文本颜色。 Read more
Source§

fn font_weight(self, weight: FontWeight) -> Self

设置此元素的字体粗细 Read more
Source§

fn text_bg(self, bg: impl Into<Hsla>) -> Self

设置此元素的背景颜色。 Read more
Source§

fn text_size(self, size: impl Into<AbsoluteLength>) -> Self

设置此元素的文本大小。 Read more
Source§

fn text_xs(self) -> Self

将文本大小设置为 ‘extra small’。 文档
Source§

fn text_sm(self) -> Self

将文本大小设置为 ‘small’。 文档
Source§

fn text_base(self) -> Self

将文本大小设置为 ‘base’。 文档
Source§

fn text_lg(self) -> Self

将文本大小设置为 ‘large’。 文档
Source§

fn text_xl(self) -> Self

将文本大小设置为 ‘extra large’。 文档
Source§

fn text_2xl(self) -> Self

将文本大小设置为 ‘extra extra large’。 文档
Source§

fn text_3xl(self) -> Self

将文本大小设置为 ‘extra extra extra large’。 文档
Source§

fn italic(self) -> Self

将元素的字体样式设置为 italic。 文档
Source§

fn not_italic(self) -> Self

将元素的字体样式设置为 normal(非 italic)。 文档
Source§

fn underline(self) -> Self

将文本装饰设置为下划线。 文档
Source§

fn line_through(self) -> Self

将文本装饰设置为删除线。 文档
Source§

fn text_decoration_none(self) -> Self

移除此元素上的文本装饰。 Read more
Source§

fn text_decoration_color(self, color: impl Into<Hsla>) -> Self

设置此元素下划线的颜色
Source§

fn text_decoration_solid(self) -> Self

将文本装饰样式设置为实线。 文档
Source§

fn text_decoration_wavy(self) -> Self

将文本装饰样式设置为波浪线。 文档
Source§

fn text_decoration_0(self) -> Self

将文本装饰设置为 0px 粗。 文档
Source§

fn text_decoration_1(self) -> Self

将文本装饰设置为 1px 粗。 文档
Source§

fn text_decoration_2(self) -> Self

将文本装饰设置为 2px 粗。 文档
Source§

fn text_decoration_4(self) -> Self

将文本装饰设置为 4px 粗。 文档
Source§

fn text_decoration_8(self) -> Self

将文本装饰设置为 8px 粗。 文档
Source§

fn font_family(self, family_name: impl Into<SharedString>) -> Self

设置此元素及其子元素的字体系列。
Source§

fn font_features(self, features: FontFeatures) -> Self

设置此元素及其子元素的字体特性。
Source§

fn font(self, font: Font) -> Self

设置此元素及其子元素的字体。
Source§

fn line_height(self, line_height: impl Into<DefiniteLength>) -> Self

设置此元素及其子元素的行高。
Source§

fn opacity(self, opacity: f32) -> Self

设置此元素及其子元素的透明度。
Source§

fn blend_mode(self, mode: BlendMode) -> Self

设置渲染此元素背景时应用的混合模式。
Source§

fn rotate(self, angle_degrees: f32) -> Self

设置顺时针旋转角度(度数)。
Source§

fn scale(self, factor: f32) -> Self

设置统一缩放因子。
Source§

fn scale_xy(self, x: f32, y: f32) -> Self

设置 x 和 y 轴的非统一缩放因子。
Source§

fn transform_origin(self, x: f32, y: f32) -> Self

设置变换原点为元素大小的比例 (0.0-1.0)。 默认为中心 (0.5, 0.5)。
Source§

fn grid_cols(self, cols: u16) -> Self

设置此元素的网格列。
Source§

fn grid_cols_min_content(self, cols: u16) -> Self

设置具有最小内容最小大小的网格列。 与 grid_cols 不同,它不会在 AvailableSpace::MinContent 约束下收缩到宽度 0。
Source§

fn grid_cols_max_content(self, cols: u16) -> Self

设置具有最大内容最大大小的网格列,用于基于内容宽度的列。
Source§

fn grid_rows(self, rows: u16) -> Self

设置此元素的网格行。
Source§

fn col_start(self, start: i16) -> Self

设置此元素的列起始位置。
Source§

fn col_start_auto(self) -> Self

将此元素的列起始位置设置为 auto。
Source§

fn col_end(self, end: i16) -> Self

设置此元素的列结束位置。
Source§

fn col_end_auto(self) -> Self

将此元素的列结束位置设置为 auto。
Source§

fn col_span(self, span: u16) -> Self

设置此元素的列跨度。
Source§

fn col_span_full(self) -> Self

设置此元素的行跨度。
Source§

fn row_start(self, start: i16) -> Self

设置此元素的行起始位置。
Source§

fn row_start_auto(self) -> Self

将此元素的行起始位置设置为 “auto”
Source§

fn row_end(self, end: i16) -> Self

设置此元素的行结束位置。
Source§

fn row_end_auto(self) -> Self

将此元素的行结束位置设置为 “auto”
Source§

fn row_span(self, span: u16) -> Self

设置此元素的行跨度。
Source§

fn row_span_full(self) -> Self

设置此元素的行跨度。
Source§

fn debug(self) -> Self

在此元素周围绘制调试边框。
Source§

fn debug_below(self) -> Self

在此元素下方所有符合条件的元素上绘制调试边框。

Auto Trait Implementations§

§

impl !RefUnwindSafe for Alert

§

impl !Send for Alert

§

impl !Sync for Alert

§

impl !UnwindSafe for Alert

§

impl Freeze for Alert

§

impl Unpin for Alert

§

impl UnsafeUnpin for Alert

Blanket Implementations§

Source§

impl<E> AnimationExt for E
where E: IntoElement + 'static,

Source§

fn with_animation( self, id: impl Into<ElementId>, animation: Animation, animator: impl Fn(Self, f32) -> Self + 'static, ) -> AnimationElement<Self>
where Self: Sized,

Render this component or element with an animation
Source§

fn with_animations( self, id: impl Into<ElementId>, animations: Vec<Animation>, animator: impl Fn(Self, usize, f32) -> Self + 'static, ) -> AnimationElement<Self>
where Self: Sized,

Render this component or element with a chain of animations
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> FluentBuilder for T
where T: IntoElement,

Source§

fn map<U>(self, f: impl FnOnce(Self) -> U) -> U
where Self: Sized,

Imperatively modify self with the given closure.
Source§

fn when(self, condition: bool, then: impl FnOnce(Self) -> Self) -> Self
where Self: Sized,

Conditionally modify self with the given closure.
Source§

fn when_else( self, condition: bool, then: impl FnOnce(Self) -> Self, else_fn: impl FnOnce(Self) -> Self, ) -> Self
where Self: Sized,

Conditionally modify self with the given closure.
Source§

fn when_some<T>( self, option: Option<T>, then: impl FnOnce(Self, T) -> Self, ) -> Self
where Self: Sized,

Conditionally unwrap and modify self with the given closure, if the given option is Some.
Source§

fn when_none<T>( self, option: &Option<T>, then: impl FnOnce(Self) -> Self, ) -> Self
where Self: Sized,

Conditionally unwrap and modify self with the given closure, if the given option is None.
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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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

Refine the style of this element, applying the given style refinement.
Source§

fn h_flex(self) -> Self

Apply self into a horizontal flex layout.
Source§

fn v_flex(self) -> Self

Apply self into a vertical flex layout.
Source§

fn paddings<L>(self, paddings: impl Into<Edges<L>>) -> Self

Apply paddings to the element.
Source§

fn margins<L>(self, margins: impl Into<Edges<L>>) -> Self

Apply margins to the element.
Source§

fn debug_red(self) -> Self

Render a border with a width of 1px, color red
Source§

fn debug_blue(self) -> Self

Render a border with a width of 1px, color blue
Source§

fn debug_yellow(self) -> Self

Render a border with a width of 1px, color yellow
Source§

fn debug_green(self) -> Self

Render a border with a width of 1px, color green
Source§

fn debug_pink(self) -> Self

Render a border with a width of 1px, color pink
Source§

fn debug_focused( self, focus_handle: &FocusHandle, window: &Window, cx: &App, ) -> Self

Render a 1px blue border, when if the element is focused
Source§

fn focused_border(self, cx: &App) -> Self

Render a border with a width of 1px, color ring color
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 popover_style(self, cx: &App) -> Self

Set as Popover style
Source§

fn corner_radii(self, radius: Corners<Pixels>) -> Self

Set corner radii for the element.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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<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