pub struct Focusable<E> { /* private fields */ }
Trait Implementations§
source§impl<E: InteractiveElement> FocusableElement for Focusable<E>
impl<E: InteractiveElement> FocusableElement for Focusable<E>
fn focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Selfwhere Self: Sized,
fn in_focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Selfwhere Self: Sized,
fn on_focus( self, listener: impl Fn(&FocusEvent, &mut WindowContext<'_>) + 'static ) -> Selfwhere Self: Sized,
fn on_blur( self, listener: impl Fn(&FocusEvent, &mut WindowContext<'_>) + 'static ) -> Selfwhere Self: Sized,
fn on_focus_in( self, listener: impl Fn(&FocusEvent, &mut WindowContext<'_>) + 'static ) -> Selfwhere Self: Sized,
fn on_focus_out( self, listener: impl Fn(&FocusEvent, &mut WindowContext<'_>) + 'static ) -> Selfwhere Self: Sized,
source§impl<E> InteractiveElement for Focusable<E>where
E: InteractiveElement,
impl<E> InteractiveElement for Focusable<E>where E: InteractiveElement,
fn interactivity(&mut self) -> &mut Interactivity
fn group(self, group: impl Into<SharedString>) -> Self
fn id(self, id: impl Into<ElementId>) -> Stateful<Self>
fn track_focus(self, focus_handle: &FocusHandle) -> Focusable<Self>
fn key_context<C, E>(self, key_context: C) -> Selfwhere C: TryInto<KeyContext, Error = E>, E: Debug,
fn hover(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Self
fn group_hover( self, group_name: impl Into<SharedString>, f: impl FnOnce(StyleRefinement) -> StyleRefinement ) -> Self
fn on_mouse_down( self, button: MouseButton, listener: impl Fn(&MouseDownEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_any_mouse_down( self, listener: impl Fn(&MouseDownEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_mouse_up( self, button: MouseButton, listener: impl Fn(&MouseUpEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_any_mouse_up( self, listener: impl Fn(&MouseUpEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_mouse_down_out( self, listener: impl Fn(&MouseDownEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_mouse_up_out( self, button: MouseButton, listener: impl Fn(&MouseUpEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_mouse_move( self, listener: impl Fn(&MouseMoveEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_scroll_wheel( self, listener: impl Fn(&ScrollWheelEvent, &mut WindowContext<'_>) + 'static ) -> Self
source§fn capture_action<A: Action>(
self,
listener: impl Fn(&A, &mut WindowContext<'_>) + 'static
) -> Self
fn capture_action<A: Action>( self, listener: impl Fn(&A, &mut WindowContext<'_>) + 'static ) -> Self
Capture the given action, before normal action dispatch can fire
source§fn on_action<A: Action>(
self,
listener: impl Fn(&A, &mut WindowContext<'_>) + 'static
) -> Self
fn on_action<A: Action>( self, listener: impl Fn(&A, &mut WindowContext<'_>) + 'static ) -> Self
Add a listener for the given action, fires during the bubble event phase
fn on_key_down( self, listener: impl Fn(&KeyDownEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn capture_key_down( self, listener: impl Fn(&KeyDownEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn on_key_up( self, listener: impl Fn(&KeyUpEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn capture_key_up( self, listener: impl Fn(&KeyUpEvent, &mut WindowContext<'_>) + 'static ) -> Self
fn drag_over<S: 'static>( self, f: impl FnOnce(StyleRefinement) -> StyleRefinement ) -> Self
fn group_drag_over<S: 'static>( self, group_name: impl Into<SharedString>, f: impl FnOnce(StyleRefinement) -> StyleRefinement ) -> Self
fn on_drop<W: 'static>( self, listener: impl Fn(&View<W>, &mut WindowContext<'_>) + 'static ) -> Self
source§impl<E> ParentElement for Focusable<E>where
E: ParentElement,
impl<E> ParentElement for Focusable<E>where E: ParentElement,
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement; 2]>
fn child(self, child: impl RenderOnce) -> Selfwhere Self: Sized,
fn children(self, children: impl IntoIterator<Item = impl RenderOnce>) -> Selfwhere Self: Sized,
source§impl<E> RenderOnce for Focusable<E>where
E: Element,
impl<E> RenderOnce for Focusable<E>where E: Element,
type Element = E
fn element_id(&self) -> Option<ElementId>
fn render_once(self) -> Self::Element
fn render_into_any(self) -> AnyElement
fn draw<T, R>( self, origin: Point<Pixels>, available_space: Size<T>, cx: &mut WindowContext<'_>, f: impl FnOnce(&mut <Self::Element as Element>::State, &mut WindowContext<'_>) -> R ) -> Rwhere T: Clone + Default + Debug + Into<AvailableSpace>,
fn map<U>(self, f: impl FnOnce(Self) -> U) -> Uwhere Self: Sized, U: RenderOnce,
fn when(self, condition: bool, then: impl FnOnce(Self) -> Self) -> Selfwhere Self: Sized,
fn when_some<T>( self, option: Option<T>, then: impl FnOnce(Self, T) -> Self ) -> Selfwhere Self: Sized,
source§impl<E: StatefulInteractiveElement> StatefulInteractiveElement for Focusable<E>
impl<E: StatefulInteractiveElement> StatefulInteractiveElement for Focusable<E>
fn focusable(self) -> Focusable<Self>
fn overflow_scroll(self) -> Self
fn overflow_x_scroll(self) -> Self
fn overflow_y_scroll(self) -> Self
fn active(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Selfwhere Self: Sized,
fn group_active( self, group_name: impl Into<SharedString>, f: impl FnOnce(StyleRefinement) -> StyleRefinement ) -> Selfwhere Self: Sized,
fn on_click( self, listener: impl Fn(&ClickEvent, &mut WindowContext<'_>) + 'static ) -> Selfwhere Self: Sized,
fn on_drag<W>( self, listener: impl Fn(&mut WindowContext<'_>) -> View<W> + 'static ) -> Selfwhere Self: Sized, W: 'static + Render,
fn on_hover( self, listener: impl Fn(&bool, &mut WindowContext<'_>) + 'static ) -> Selfwhere Self: Sized,
fn tooltip( self, build_tooltip: impl Fn(&mut WindowContext<'_>) -> AnyView + 'static ) -> Selfwhere Self: Sized,
source§impl<E> Styled for Focusable<E>where
E: Styled,
impl<E> Styled for Focusable<E>where E: Styled,
fn style(&mut self) -> &mut StyleRefinement
source§fn neg_w_full(self) -> Self
fn neg_w_full(self) -> Self
source§fn neg_w_1_12(self) -> Self
fn neg_w_1_12(self) -> Self
source§fn neg_h_full(self) -> Self
fn neg_h_full(self) -> Self
source§fn neg_h_1_12(self) -> Self
fn neg_h_1_12(self) -> Self
source§fn size(self, length: impl Clone + Into<Length>) -> Self
fn size(self, length: impl Clone + Into<Length>) -> Self
Sets the width and height of the element.
source§fn neg_size_0(self) -> Self
fn neg_size_0(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_0p5(self) -> Self
fn neg_size_0p5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1(self) -> Self
fn neg_size_1(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1p5(self) -> Self
fn neg_size_1p5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_2(self) -> Self
fn neg_size_2(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_2p5(self) -> Self
fn neg_size_2p5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_3(self) -> Self
fn neg_size_3(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_3p5(self) -> Self
fn neg_size_3p5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_4(self) -> Self
fn neg_size_4(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_5(self) -> Self
fn neg_size_5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_6(self) -> Self
fn neg_size_6(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_7(self) -> Self
fn neg_size_7(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_8(self) -> Self
fn neg_size_8(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_9(self) -> Self
fn neg_size_9(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_10(self) -> Self
fn neg_size_10(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_11(self) -> Self
fn neg_size_11(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_12(self) -> Self
fn neg_size_12(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_16(self) -> Self
fn neg_size_16(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_20(self) -> Self
fn neg_size_20(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_24(self) -> Self
fn neg_size_24(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_32(self) -> Self
fn neg_size_32(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_40(self) -> Self
fn neg_size_40(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_48(self) -> Self
fn neg_size_48(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_56(self) -> Self
fn neg_size_56(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_64(self) -> Self
fn neg_size_64(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_72(self) -> Self
fn neg_size_72(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_80(self) -> Self
fn neg_size_80(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_96(self) -> Self
fn neg_size_96(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_px(self) -> Self
fn neg_size_px(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_full(self) -> Self
fn neg_size_full(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1_2(self) -> Self
fn neg_size_1_2(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1_3(self) -> Self
fn neg_size_1_3(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_2_3(self) -> Self
fn neg_size_2_3(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1_4(self) -> Self
fn neg_size_1_4(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_2_4(self) -> Self
fn neg_size_2_4(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_3_4(self) -> Self
fn neg_size_3_4(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1_5(self) -> Self
fn neg_size_1_5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_2_5(self) -> Self
fn neg_size_2_5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_3_5(self) -> Self
fn neg_size_3_5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_4_5(self) -> Self
fn neg_size_4_5(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1_6(self) -> Self
fn neg_size_1_6(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_5_6(self) -> Self
fn neg_size_5_6(self) -> Self
Sets the width and height of the element. Read more
source§fn neg_size_1_12(self) -> Self
fn neg_size_1_12(self) -> Self
Sets the width and height of the element. Read more
source§fn min_w(self, length: impl Clone + Into<Length>) -> Self
fn min_w(self, length: impl Clone + Into<Length>) -> Self
Sets the minimum width of the element. Docs
source§fn neg_min_w_0(self) -> Self
fn neg_min_w_0(self) -> Self
source§fn neg_min_w_0p5(self) -> Self
fn neg_min_w_0p5(self) -> Self
source§fn neg_min_w_1(self) -> Self
fn neg_min_w_1(self) -> Self
source§fn neg_min_w_1p5(self) -> Self
fn neg_min_w_1p5(self) -> Self
source§fn neg_min_w_2(self) -> Self
fn neg_min_w_2(self) -> Self
source§fn neg_min_w_2p5(self) -> Self
fn neg_min_w_2p5(self) -> Self
source§fn neg_min_w_3(self) -> Self
fn neg_min_w_3(self) -> Self
source§fn neg_min_w_3p5(self) -> Self
fn neg_min_w_3p5(self) -> Self
source§fn neg_min_w_4(self) -> Self
fn neg_min_w_4(self) -> Self
source§fn neg_min_w_5(self) -> Self
fn neg_min_w_5(self) -> Self
source§fn neg_min_w_6(self) -> Self
fn neg_min_w_6(self) -> Self
source§fn neg_min_w_7(self) -> Self
fn neg_min_w_7(self) -> Self
source§fn neg_min_w_8(self) -> Self
fn neg_min_w_8(self) -> Self
source§fn neg_min_w_9(self) -> Self
fn neg_min_w_9(self) -> Self
source§fn neg_min_w_10(self) -> Self
fn neg_min_w_10(self) -> Self
source§fn neg_min_w_11(self) -> Self
fn neg_min_w_11(self) -> Self
source§fn neg_min_w_12(self) -> Self
fn neg_min_w_12(self) -> Self
source§fn neg_min_w_16(self) -> Self
fn neg_min_w_16(self) -> Self
source§fn neg_min_w_20(self) -> Self
fn neg_min_w_20(self) -> Self
source§fn neg_min_w_24(self) -> Self
fn neg_min_w_24(self) -> Self
source§fn neg_min_w_32(self) -> Self
fn neg_min_w_32(self) -> Self
source§fn neg_min_w_40(self) -> Self
fn neg_min_w_40(self) -> Self
source§fn neg_min_w_48(self) -> Self
fn neg_min_w_48(self) -> Self
source§fn neg_min_w_56(self) -> Self
fn neg_min_w_56(self) -> Self
source§fn neg_min_w_64(self) -> Self
fn neg_min_w_64(self) -> Self
source§fn neg_min_w_72(self) -> Self
fn neg_min_w_72(self) -> Self
source§fn neg_min_w_80(self) -> Self
fn neg_min_w_80(self) -> Self
source§fn neg_min_w_96(self) -> Self
fn neg_min_w_96(self) -> Self
source§fn min_w_auto(self) -> Self
fn min_w_auto(self) -> Self
source§fn neg_min_w_px(self) -> Self
fn neg_min_w_px(self) -> Self
source§fn min_w_full(self) -> Self
fn min_w_full(self) -> Self
source§fn neg_min_w_full(self) -> Self
fn neg_min_w_full(self) -> Self
source§fn neg_min_w_1_2(self) -> Self
fn neg_min_w_1_2(self) -> Self
source§fn neg_min_w_1_3(self) -> Self
fn neg_min_w_1_3(self) -> Self
source§fn neg_min_w_2_3(self) -> Self
fn neg_min_w_2_3(self) -> Self
source§fn neg_min_w_1_4(self) -> Self
fn neg_min_w_1_4(self) -> Self
source§fn neg_min_w_2_4(self) -> Self
fn neg_min_w_2_4(self) -> Self
source§fn neg_min_w_3_4(self) -> Self
fn neg_min_w_3_4(self) -> Self
source§fn neg_min_w_1_5(self) -> Self
fn neg_min_w_1_5(self) -> Self
source§fn neg_min_w_2_5(self) -> Self
fn neg_min_w_2_5(self) -> Self
source§fn neg_min_w_3_5(self) -> Self
fn neg_min_w_3_5(self) -> Self
source§fn neg_min_w_4_5(self) -> Self
fn neg_min_w_4_5(self) -> Self
source§fn neg_min_w_1_6(self) -> Self
fn neg_min_w_1_6(self) -> Self
source§fn neg_min_w_5_6(self) -> Self
fn neg_min_w_5_6(self) -> Self
source§fn min_w_1_12(self) -> Self
fn min_w_1_12(self) -> Self
source§fn neg_min_w_1_12(self) -> Self
fn neg_min_w_1_12(self) -> Self
source§fn min_h(self, length: impl Clone + Into<Length>) -> Self
fn min_h(self, length: impl Clone + Into<Length>) -> Self
Sets the minimum height of the element. Docs
source§fn neg_min_h_0(self) -> Self
fn neg_min_h_0(self) -> Self
source§fn neg_min_h_0p5(self) -> Self
fn neg_min_h_0p5(self) -> Self
source§fn neg_min_h_1(self) -> Self
fn neg_min_h_1(self) -> Self
source§fn neg_min_h_1p5(self) -> Self
fn neg_min_h_1p5(self) -> Self
source§fn neg_min_h_2(self) -> Self
fn neg_min_h_2(self) -> Self
source§fn neg_min_h_2p5(self) -> Self
fn neg_min_h_2p5(self) -> Self
source§fn neg_min_h_3(self) -> Self
fn neg_min_h_3(self) -> Self
source§fn neg_min_h_3p5(self) -> Self
fn neg_min_h_3p5(self) -> Self
source§fn neg_min_h_4(self) -> Self
fn neg_min_h_4(self) -> Self
source§fn neg_min_h_5(self) -> Self
fn neg_min_h_5(self) -> Self
source§fn neg_min_h_6(self) -> Self
fn neg_min_h_6(self) -> Self
source§fn neg_min_h_7(self) -> Self
fn neg_min_h_7(self) -> Self
source§fn neg_min_h_8(self) -> Self
fn neg_min_h_8(self) -> Self
source§fn neg_min_h_9(self) -> Self
fn neg_min_h_9(self) -> Self
source§fn neg_min_h_10(self) -> Self
fn neg_min_h_10(self) -> Self
source§fn neg_min_h_11(self) -> Self
fn neg_min_h_11(self) -> Self
source§fn neg_min_h_12(self) -> Self
fn neg_min_h_12(self) -> Self
source§fn neg_min_h_16(self) -> Self
fn neg_min_h_16(self) -> Self
source§fn neg_min_h_20(self) -> Self
fn neg_min_h_20(self) -> Self
source§fn neg_min_h_24(self) -> Self
fn neg_min_h_24(self) -> Self
source§fn neg_min_h_32(self) -> Self
fn neg_min_h_32(self) -> Self
source§fn neg_min_h_40(self) -> Self
fn neg_min_h_40(self) -> Self
source§fn neg_min_h_48(self) -> Self
fn neg_min_h_48(self) -> Self
source§fn neg_min_h_56(self) -> Self
fn neg_min_h_56(self) -> Self
source§fn neg_min_h_64(self) -> Self
fn neg_min_h_64(self) -> Self
source§fn neg_min_h_72(self) -> Self
fn neg_min_h_72(self) -> Self
source§fn neg_min_h_80(self) -> Self
fn neg_min_h_80(self) -> Self
source§fn neg_min_h_96(self) -> Self
fn neg_min_h_96(self) -> Self
source§fn min_h_auto(self) -> Self
fn min_h_auto(self) -> Self
source§fn neg_min_h_px(self) -> Self
fn neg_min_h_px(self) -> Self
source§fn min_h_full(self) -> Self
fn min_h_full(self) -> Self
source§fn neg_min_h_full(self) -> Self
fn neg_min_h_full(self) -> Self
source§fn neg_min_h_1_2(self) -> Self
fn neg_min_h_1_2(self) -> Self
source§fn neg_min_h_1_3(self) -> Self
fn neg_min_h_1_3(self) -> Self
source§fn neg_min_h_2_3(self) -> Self
fn neg_min_h_2_3(self) -> Self
source§fn neg_min_h_1_4(self) -> Self
fn neg_min_h_1_4(self) -> Self
source§fn neg_min_h_2_4(self) -> Self
fn neg_min_h_2_4(self) -> Self
source§fn neg_min_h_3_4(self) -> Self
fn neg_min_h_3_4(self) -> Self
source§fn neg_min_h_1_5(self) -> Self
fn neg_min_h_1_5(self) -> Self
source§fn neg_min_h_2_5(self) -> Self
fn neg_min_h_2_5(self) -> Self
source§fn neg_min_h_3_5(self) -> Self
fn neg_min_h_3_5(self) -> Self
source§fn neg_min_h_4_5(self) -> Self
fn neg_min_h_4_5(self) -> Self
source§fn neg_min_h_1_6(self) -> Self
fn neg_min_h_1_6(self) -> Self
source§fn neg_min_h_5_6(self) -> Self
fn neg_min_h_5_6(self) -> Self
source§fn min_h_1_12(self) -> Self
fn min_h_1_12(self) -> Self
source§fn neg_min_h_1_12(self) -> Self
fn neg_min_h_1_12(self) -> Self
source§fn max_w(self, length: impl Clone + Into<Length>) -> Self
fn max_w(self, length: impl Clone + Into<Length>) -> Self
Sets the maximum width of the element. Docs
source§fn neg_max_w_0(self) -> Self
fn neg_max_w_0(self) -> Self
source§fn neg_max_w_0p5(self) -> Self
fn neg_max_w_0p5(self) -> Self
source§fn neg_max_w_1(self) -> Self
fn neg_max_w_1(self) -> Self
source§fn neg_max_w_1p5(self) -> Self
fn neg_max_w_1p5(self) -> Self
source§fn neg_max_w_2(self) -> Self
fn neg_max_w_2(self) -> Self
source§fn neg_max_w_2p5(self) -> Self
fn neg_max_w_2p5(self) -> Self
source§fn neg_max_w_3(self) -> Self
fn neg_max_w_3(self) -> Self
source§fn neg_max_w_3p5(self) -> Self
fn neg_max_w_3p5(self) -> Self
source§fn neg_max_w_4(self) -> Self
fn neg_max_w_4(self) -> Self
source§fn neg_max_w_5(self) -> Self
fn neg_max_w_5(self) -> Self
source§fn neg_max_w_6(self) -> Self
fn neg_max_w_6(self) -> Self
source§fn neg_max_w_7(self) -> Self
fn neg_max_w_7(self) -> Self
source§fn neg_max_w_8(self) -> Self
fn neg_max_w_8(self) -> Self
source§fn neg_max_w_9(self) -> Self
fn neg_max_w_9(self) -> Self
source§fn neg_max_w_10(self) -> Self
fn neg_max_w_10(self) -> Self
source§fn neg_max_w_11(self) -> Self
fn neg_max_w_11(self) -> Self
source§fn neg_max_w_12(self) -> Self
fn neg_max_w_12(self) -> Self
source§fn neg_max_w_16(self) -> Self
fn neg_max_w_16(self) -> Self
source§fn neg_max_w_20(self) -> Self
fn neg_max_w_20(self) -> Self
source§fn neg_max_w_24(self) -> Self
fn neg_max_w_24(self) -> Self
source§fn neg_max_w_32(self) -> Self
fn neg_max_w_32(self) -> Self
source§fn neg_max_w_40(self) -> Self
fn neg_max_w_40(self) -> Self
source§fn neg_max_w_48(self) -> Self
fn neg_max_w_48(self) -> Self
source§fn neg_max_w_56(self) -> Self
fn neg_max_w_56(self) -> Self
source§fn neg_max_w_64(self) -> Self
fn neg_max_w_64(self) -> Self
source§fn neg_max_w_72(self) -> Self
fn neg_max_w_72(self) -> Self
source§fn neg_max_w_80(self) -> Self
fn neg_max_w_80(self) -> Self
source§fn neg_max_w_96(self) -> Self
fn neg_max_w_96(self) -> Self
source§fn max_w_auto(self) -> Self
fn max_w_auto(self) -> Self
source§fn neg_max_w_px(self) -> Self
fn neg_max_w_px(self) -> Self
source§fn max_w_full(self) -> Self
fn max_w_full(self) -> Self
source§fn neg_max_w_full(self) -> Self
fn neg_max_w_full(self) -> Self
source§fn neg_max_w_1_2(self) -> Self
fn neg_max_w_1_2(self) -> Self
source§fn neg_max_w_1_3(self) -> Self
fn neg_max_w_1_3(self) -> Self
source§fn neg_max_w_2_3(self) -> Self
fn neg_max_w_2_3(self) -> Self
source§fn neg_max_w_1_4(self) -> Self
fn neg_max_w_1_4(self) -> Self
source§fn neg_max_w_2_4(self) -> Self
fn neg_max_w_2_4(self) -> Self
source§fn neg_max_w_3_4(self) -> Self
fn neg_max_w_3_4(self) -> Self
source§fn neg_max_w_1_5(self) -> Self
fn neg_max_w_1_5(self) -> Self
source§fn neg_max_w_2_5(self) -> Self
fn neg_max_w_2_5(self) -> Self
source§fn neg_max_w_3_5(self) -> Self
fn neg_max_w_3_5(self) -> Self
source§fn neg_max_w_4_5(self) -> Self
fn neg_max_w_4_5(self) -> Self
source§fn neg_max_w_1_6(self) -> Self
fn neg_max_w_1_6(self) -> Self
source§fn neg_max_w_5_6(self) -> Self
fn neg_max_w_5_6(self) -> Self
source§fn max_w_1_12(self) -> Self
fn max_w_1_12(self) -> Self
source§fn neg_max_w_1_12(self) -> Self
fn neg_max_w_1_12(self) -> Self
source§fn max_h(self, length: impl Clone + Into<Length>) -> Self
fn max_h(self, length: impl Clone + Into<Length>) -> Self
Sets the maximum height of the element. Docs
source§fn neg_max_h_0(self) -> Self
fn neg_max_h_0(self) -> Self
source§fn neg_max_h_0p5(self) -> Self
fn neg_max_h_0p5(self) -> Self
source§fn neg_max_h_1(self) -> Self
fn neg_max_h_1(self) -> Self
source§fn neg_max_h_1p5(self) -> Self
fn neg_max_h_1p5(self) -> Self
source§fn neg_max_h_2(self) -> Self
fn neg_max_h_2(self) -> Self
source§fn neg_max_h_2p5(self) -> Self
fn neg_max_h_2p5(self) -> Self
source§fn neg_max_h_3(self) -> Self
fn neg_max_h_3(self) -> Self
source§fn neg_max_h_3p5(self) -> Self
fn neg_max_h_3p5(self) -> Self
source§fn neg_max_h_4(self) -> Self
fn neg_max_h_4(self) -> Self
source§fn neg_max_h_5(self) -> Self
fn neg_max_h_5(self) -> Self
source§fn neg_max_h_6(self) -> Self
fn neg_max_h_6(self) -> Self
source§fn neg_max_h_7(self) -> Self
fn neg_max_h_7(self) -> Self
source§fn neg_max_h_8(self) -> Self
fn neg_max_h_8(self) -> Self
source§fn neg_max_h_9(self) -> Self
fn neg_max_h_9(self) -> Self
source§fn neg_max_h_10(self) -> Self
fn neg_max_h_10(self) -> Self
source§fn neg_max_h_11(self) -> Self
fn neg_max_h_11(self) -> Self
source§fn neg_max_h_12(self) -> Self
fn neg_max_h_12(self) -> Self
source§fn neg_max_h_16(self) -> Self
fn neg_max_h_16(self) -> Self
source§fn neg_max_h_20(self) -> Self
fn neg_max_h_20(self) -> Self
source§fn neg_max_h_24(self) -> Self
fn neg_max_h_24(self) -> Self
source§fn neg_max_h_32(self) -> Self
fn neg_max_h_32(self) -> Self
source§fn neg_max_h_40(self) -> Self
fn neg_max_h_40(self) -> Self
source§fn neg_max_h_48(self) -> Self
fn neg_max_h_48(self) -> Self
source§fn neg_max_h_56(self) -> Self
fn neg_max_h_56(self) -> Self
source§fn neg_max_h_64(self) -> Self
fn neg_max_h_64(self) -> Self
source§fn neg_max_h_72(self) -> Self
fn neg_max_h_72(self) -> Self
source§fn neg_max_h_80(self) -> Self
fn neg_max_h_80(self) -> Self
source§fn neg_max_h_96(self) -> Self
fn neg_max_h_96(self) -> Self
source§fn max_h_auto(self) -> Self
fn max_h_auto(self) -> Self
source§fn neg_max_h_px(self) -> Self
fn neg_max_h_px(self) -> Self
source§fn max_h_full(self) -> Self
fn max_h_full(self) -> Self
source§fn neg_max_h_full(self) -> Self
fn neg_max_h_full(self) -> Self
source§fn neg_max_h_1_2(self) -> Self
fn neg_max_h_1_2(self) -> Self
source§fn neg_max_h_1_3(self) -> Self
fn neg_max_h_1_3(self) -> Self
source§fn neg_max_h_2_3(self) -> Self
fn neg_max_h_2_3(self) -> Self
source§fn neg_max_h_1_4(self) -> Self
fn neg_max_h_1_4(self) -> Self
source§fn neg_max_h_2_4(self) -> Self
fn neg_max_h_2_4(self) -> Self
source§fn neg_max_h_3_4(self) -> Self
fn neg_max_h_3_4(self) -> Self
source§fn neg_max_h_1_5(self) -> Self
fn neg_max_h_1_5(self) -> Self
source§fn neg_max_h_2_5(self) -> Self
fn neg_max_h_2_5(self) -> Self
source§fn neg_max_h_3_5(self) -> Self
fn neg_max_h_3_5(self) -> Self
source§fn neg_max_h_4_5(self) -> Self
fn neg_max_h_4_5(self) -> Self
source§fn neg_max_h_1_6(self) -> Self
fn neg_max_h_1_6(self) -> Self
source§fn neg_max_h_5_6(self) -> Self
fn neg_max_h_5_6(self) -> Self
source§fn max_h_1_12(self) -> Self
fn max_h_1_12(self) -> Self
source§fn neg_max_h_1_12(self) -> Self
fn neg_max_h_1_12(self) -> Self
source§fn neg_m_full(self) -> Self
fn neg_m_full(self) -> Self
source§fn neg_m_1_12(self) -> Self
fn neg_m_1_12(self) -> Self
source§fn mt(self, length: impl Clone + Into<Length>) -> Self
fn mt(self, length: impl Clone + Into<Length>) -> Self
Sets the top margin of the element. Docs
source§fn neg_mt_0p5(self) -> Self
fn neg_mt_0p5(self) -> Self
source§fn neg_mt_1p5(self) -> Self
fn neg_mt_1p5(self) -> Self
source§fn neg_mt_2p5(self) -> Self
fn neg_mt_2p5(self) -> Self
source§fn neg_mt_3p5(self) -> Self
fn neg_mt_3p5(self) -> Self
source§fn neg_mt_full(self) -> Self
fn neg_mt_full(self) -> Self
source§fn neg_mt_1_2(self) -> Self
fn neg_mt_1_2(self) -> Self
source§fn neg_mt_1_3(self) -> Self
fn neg_mt_1_3(self) -> Self
source§fn neg_mt_2_3(self) -> Self
fn neg_mt_2_3(self) -> Self
source§fn neg_mt_1_4(self) -> Self
fn neg_mt_1_4(self) -> Self
source§fn neg_mt_2_4(self) -> Self
fn neg_mt_2_4(self) -> Self
source§fn neg_mt_3_4(self) -> Self
fn neg_mt_3_4(self) -> Self
source§fn neg_mt_1_5(self) -> Self
fn neg_mt_1_5(self) -> Self
source§fn neg_mt_2_5(self) -> Self
fn neg_mt_2_5(self) -> Self
source§fn neg_mt_3_5(self) -> Self
fn neg_mt_3_5(self) -> Self
source§fn neg_mt_4_5(self) -> Self
fn neg_mt_4_5(self) -> Self
source§fn neg_mt_1_6(self) -> Self
fn neg_mt_1_6(self) -> Self
source§fn neg_mt_5_6(self) -> Self
fn neg_mt_5_6(self) -> Self
source§fn neg_mt_1_12(self) -> Self
fn neg_mt_1_12(self) -> Self
source§fn mb(self, length: impl Clone + Into<Length>) -> Self
fn mb(self, length: impl Clone + Into<Length>) -> Self
Sets the bottom margin of the element. Docs
source§fn neg_mb_0p5(self) -> Self
fn neg_mb_0p5(self) -> Self
source§fn neg_mb_1p5(self) -> Self
fn neg_mb_1p5(self) -> Self
source§fn neg_mb_2p5(self) -> Self
fn neg_mb_2p5(self) -> Self
source§fn neg_mb_3p5(self) -> Self
fn neg_mb_3p5(self) -> Self
source§fn neg_mb_full(self) -> Self
fn neg_mb_full(self) -> Self
source§fn neg_mb_1_2(self) -> Self
fn neg_mb_1_2(self) -> Self
source§fn neg_mb_1_3(self) -> Self
fn neg_mb_1_3(self) -> Self
source§fn neg_mb_2_3(self) -> Self
fn neg_mb_2_3(self) -> Self
source§fn neg_mb_1_4(self) -> Self
fn neg_mb_1_4(self) -> Self
source§fn neg_mb_2_4(self) -> Self
fn neg_mb_2_4(self) -> Self
source§fn neg_mb_3_4(self) -> Self
fn neg_mb_3_4(self) -> Self
source§fn neg_mb_1_5(self) -> Self
fn neg_mb_1_5(self) -> Self
source§fn neg_mb_2_5(self) -> Self
fn neg_mb_2_5(self) -> Self
source§fn neg_mb_3_5(self) -> Self
fn neg_mb_3_5(self) -> Self
source§fn neg_mb_4_5(self) -> Self
fn neg_mb_4_5(self) -> Self
source§fn neg_mb_1_6(self) -> Self
fn neg_mb_1_6(self) -> Self
source§fn neg_mb_5_6(self) -> Self
fn neg_mb_5_6(self) -> Self
source§fn neg_mb_1_12(self) -> Self
fn neg_mb_1_12(self) -> Self
source§fn my(self, length: impl Clone + Into<Length>) -> Self
fn my(self, length: impl Clone + Into<Length>) -> Self
Sets the vertical margin of the element. Docs
source§fn neg_my_0p5(self) -> Self
fn neg_my_0p5(self) -> Self
source§fn neg_my_1p5(self) -> Self
fn neg_my_1p5(self) -> Self
source§fn neg_my_2p5(self) -> Self
fn neg_my_2p5(self) -> Self
source§fn neg_my_3p5(self) -> Self
fn neg_my_3p5(self) -> Self
source§fn neg_my_full(self) -> Self
fn neg_my_full(self) -> Self
source§fn neg_my_1_2(self) -> Self
fn neg_my_1_2(self) -> Self
source§fn neg_my_1_3(self) -> Self
fn neg_my_1_3(self) -> Self
source§fn neg_my_2_3(self) -> Self
fn neg_my_2_3(self) -> Self
source§fn neg_my_1_4(self) -> Self
fn neg_my_1_4(self) -> Self
source§fn neg_my_2_4(self) -> Self
fn neg_my_2_4(self) -> Self
source§fn neg_my_3_4(self) -> Self
fn neg_my_3_4(self) -> Self
source§fn neg_my_1_5(self) -> Self
fn neg_my_1_5(self) -> Self
source§fn neg_my_2_5(self) -> Self
fn neg_my_2_5(self) -> Self
source§fn neg_my_3_5(self) -> Self
fn neg_my_3_5(self) -> Self
source§fn neg_my_4_5(self) -> Self
fn neg_my_4_5(self) -> Self
source§fn neg_my_1_6(self) -> Self
fn neg_my_1_6(self) -> Self
source§fn neg_my_5_6(self) -> Self
fn neg_my_5_6(self) -> Self
source§fn neg_my_1_12(self) -> Self
fn neg_my_1_12(self) -> Self
source§fn mx(self, length: impl Clone + Into<Length>) -> Self
fn mx(self, length: impl Clone + Into<Length>) -> Self
Sets the horizontal margin of the element. Docs
source§fn neg_mx_0p5(self) -> Self
fn neg_mx_0p5(self) -> Self
source§fn neg_mx_1p5(self) -> Self
fn neg_mx_1p5(self) -> Self
source§fn neg_mx_2p5(self) -> Self
fn neg_mx_2p5(self) -> Self
source§fn neg_mx_3p5(self) -> Self
fn neg_mx_3p5(self) -> Self
source§fn neg_mx_full(self) -> Self
fn neg_mx_full(self) -> Self
source§fn neg_mx_1_2(self) -> Self
fn neg_mx_1_2(self) -> Self
source§fn neg_mx_1_3(self) -> Self
fn neg_mx_1_3(self) -> Self
source§fn neg_mx_2_3(self) -> Self
fn neg_mx_2_3(self) -> Self
source§fn neg_mx_1_4(self) -> Self
fn neg_mx_1_4(self) -> Self
source§fn neg_mx_2_4(self) -> Self
fn neg_mx_2_4(self) -> Self
source§fn neg_mx_3_4(self) -> Self
fn neg_mx_3_4(self) -> Self
source§fn neg_mx_1_5(self) -> Self
fn neg_mx_1_5(self) -> Self
source§fn neg_mx_2_5(self) -> Self
fn neg_mx_2_5(self) -> Self
source§fn neg_mx_3_5(self) -> Self
fn neg_mx_3_5(self) -> Self
source§fn neg_mx_4_5(self) -> Self
fn neg_mx_4_5(self) -> Self
source§fn neg_mx_1_6(self) -> Self
fn neg_mx_1_6(self) -> Self
source§fn neg_mx_5_6(self) -> Self
fn neg_mx_5_6(self) -> Self
source§fn neg_mx_1_12(self) -> Self
fn neg_mx_1_12(self) -> Self
source§fn ml(self, length: impl Clone + Into<Length>) -> Self
fn ml(self, length: impl Clone + Into<Length>) -> Self
Sets the left margin of the element. Docs
source§fn neg_ml_0p5(self) -> Self
fn neg_ml_0p5(self) -> Self
source§fn neg_ml_1p5(self) -> Self
fn neg_ml_1p5(self) -> Self
source§fn neg_ml_2p5(self) -> Self
fn neg_ml_2p5(self) -> Self
source§fn neg_ml_3p5(self) -> Self
fn neg_ml_3p5(self) -> Self
source§fn neg_ml_full(self) -> Self
fn neg_ml_full(self) -> Self
source§fn neg_ml_1_2(self) -> Self
fn neg_ml_1_2(self) -> Self
source§fn neg_ml_1_3(self) -> Self
fn neg_ml_1_3(self) -> Self
source§fn neg_ml_2_3(self) -> Self
fn neg_ml_2_3(self) -> Self
source§fn neg_ml_1_4(self) -> Self
fn neg_ml_1_4(self) -> Self
source§fn neg_ml_2_4(self) -> Self
fn neg_ml_2_4(self) -> Self
source§fn neg_ml_3_4(self) -> Self
fn neg_ml_3_4(self) -> Self
source§fn neg_ml_1_5(self) -> Self
fn neg_ml_1_5(self) -> Self
source§fn neg_ml_2_5(self) -> Self
fn neg_ml_2_5(self) -> Self
source§fn neg_ml_3_5(self) -> Self
fn neg_ml_3_5(self) -> Self
source§fn neg_ml_4_5(self) -> Self
fn neg_ml_4_5(self) -> Self
source§fn neg_ml_1_6(self) -> Self
fn neg_ml_1_6(self) -> Self
source§fn neg_ml_5_6(self) -> Self
fn neg_ml_5_6(self) -> Self
source§fn neg_ml_1_12(self) -> Self
fn neg_ml_1_12(self) -> Self
source§fn mr(self, length: impl Clone + Into<Length>) -> Self
fn mr(self, length: impl Clone + Into<Length>) -> Self
Sets the right margin of the element. Docs
source§fn neg_mr_0p5(self) -> Self
fn neg_mr_0p5(self) -> Self
source§fn neg_mr_1p5(self) -> Self
fn neg_mr_1p5(self) -> Self
source§fn neg_mr_2p5(self) -> Self
fn neg_mr_2p5(self) -> Self
source§fn neg_mr_3p5(self) -> Self
fn neg_mr_3p5(self) -> Self
source§fn neg_mr_full(self) -> Self
fn neg_mr_full(self) -> Self
source§fn neg_mr_1_2(self) -> Self
fn neg_mr_1_2(self) -> Self
source§fn neg_mr_1_3(self) -> Self
fn neg_mr_1_3(self) -> Self
source§fn neg_mr_2_3(self) -> Self
fn neg_mr_2_3(self) -> Self
source§fn neg_mr_1_4(self) -> Self
fn neg_mr_1_4(self) -> Self
source§fn neg_mr_2_4(self) -> Self
fn neg_mr_2_4(self) -> Self
source§fn neg_mr_3_4(self) -> Self
fn neg_mr_3_4(self) -> Self
source§fn neg_mr_1_5(self) -> Self
fn neg_mr_1_5(self) -> Self
source§fn neg_mr_2_5(self) -> Self
fn neg_mr_2_5(self) -> Self
source§fn neg_mr_3_5(self) -> Self
fn neg_mr_3_5(self) -> Self
source§fn neg_mr_4_5(self) -> Self
fn neg_mr_4_5(self) -> Self
source§fn neg_mr_1_6(self) -> Self
fn neg_mr_1_6(self) -> Self
source§fn neg_mr_5_6(self) -> Self
fn neg_mr_5_6(self) -> Self
source§fn neg_mr_1_12(self) -> Self
fn neg_mr_1_12(self) -> Self
source§fn p(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn p(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the padding of the element. Docs
source§fn neg_p_full(self) -> Self
fn neg_p_full(self) -> Self
source§fn neg_p_1_12(self) -> Self
fn neg_p_1_12(self) -> Self
source§fn pt(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pt(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the top padding of the element. Docs
source§fn neg_pt_0p5(self) -> Self
fn neg_pt_0p5(self) -> Self
source§fn neg_pt_1p5(self) -> Self
fn neg_pt_1p5(self) -> Self
source§fn neg_pt_2p5(self) -> Self
fn neg_pt_2p5(self) -> Self
source§fn neg_pt_3p5(self) -> Self
fn neg_pt_3p5(self) -> Self
source§fn neg_pt_full(self) -> Self
fn neg_pt_full(self) -> Self
source§fn neg_pt_1_2(self) -> Self
fn neg_pt_1_2(self) -> Self
source§fn neg_pt_1_3(self) -> Self
fn neg_pt_1_3(self) -> Self
source§fn neg_pt_2_3(self) -> Self
fn neg_pt_2_3(self) -> Self
source§fn neg_pt_1_4(self) -> Self
fn neg_pt_1_4(self) -> Self
source§fn neg_pt_2_4(self) -> Self
fn neg_pt_2_4(self) -> Self
source§fn neg_pt_3_4(self) -> Self
fn neg_pt_3_4(self) -> Self
source§fn neg_pt_1_5(self) -> Self
fn neg_pt_1_5(self) -> Self
source§fn neg_pt_2_5(self) -> Self
fn neg_pt_2_5(self) -> Self
source§fn neg_pt_3_5(self) -> Self
fn neg_pt_3_5(self) -> Self
source§fn neg_pt_4_5(self) -> Self
fn neg_pt_4_5(self) -> Self
source§fn neg_pt_1_6(self) -> Self
fn neg_pt_1_6(self) -> Self
source§fn neg_pt_5_6(self) -> Self
fn neg_pt_5_6(self) -> Self
source§fn neg_pt_1_12(self) -> Self
fn neg_pt_1_12(self) -> Self
source§fn pb(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pb(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the bottom padding of the element. Docs
source§fn neg_pb_0p5(self) -> Self
fn neg_pb_0p5(self) -> Self
source§fn neg_pb_1p5(self) -> Self
fn neg_pb_1p5(self) -> Self
source§fn neg_pb_2p5(self) -> Self
fn neg_pb_2p5(self) -> Self
source§fn neg_pb_3p5(self) -> Self
fn neg_pb_3p5(self) -> Self
source§fn neg_pb_full(self) -> Self
fn neg_pb_full(self) -> Self
source§fn neg_pb_1_2(self) -> Self
fn neg_pb_1_2(self) -> Self
source§fn neg_pb_1_3(self) -> Self
fn neg_pb_1_3(self) -> Self
source§fn neg_pb_2_3(self) -> Self
fn neg_pb_2_3(self) -> Self
source§fn neg_pb_1_4(self) -> Self
fn neg_pb_1_4(self) -> Self
source§fn neg_pb_2_4(self) -> Self
fn neg_pb_2_4(self) -> Self
source§fn neg_pb_3_4(self) -> Self
fn neg_pb_3_4(self) -> Self
source§fn neg_pb_1_5(self) -> Self
fn neg_pb_1_5(self) -> Self
source§fn neg_pb_2_5(self) -> Self
fn neg_pb_2_5(self) -> Self
source§fn neg_pb_3_5(self) -> Self
fn neg_pb_3_5(self) -> Self
source§fn neg_pb_4_5(self) -> Self
fn neg_pb_4_5(self) -> Self
source§fn neg_pb_1_6(self) -> Self
fn neg_pb_1_6(self) -> Self
source§fn neg_pb_5_6(self) -> Self
fn neg_pb_5_6(self) -> Self
source§fn neg_pb_1_12(self) -> Self
fn neg_pb_1_12(self) -> Self
source§fn px(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn px(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the horizontal padding of the element. Docs
source§fn neg_px_0p5(self) -> Self
fn neg_px_0p5(self) -> Self
source§fn neg_px_1p5(self) -> Self
fn neg_px_1p5(self) -> Self
source§fn neg_px_2p5(self) -> Self
fn neg_px_2p5(self) -> Self
source§fn neg_px_3p5(self) -> Self
fn neg_px_3p5(self) -> Self
source§fn neg_px_full(self) -> Self
fn neg_px_full(self) -> Self
source§fn neg_px_1_2(self) -> Self
fn neg_px_1_2(self) -> Self
source§fn neg_px_1_3(self) -> Self
fn neg_px_1_3(self) -> Self
source§fn neg_px_2_3(self) -> Self
fn neg_px_2_3(self) -> Self
source§fn neg_px_1_4(self) -> Self
fn neg_px_1_4(self) -> Self
source§fn neg_px_2_4(self) -> Self
fn neg_px_2_4(self) -> Self
source§fn neg_px_3_4(self) -> Self
fn neg_px_3_4(self) -> Self
source§fn neg_px_1_5(self) -> Self
fn neg_px_1_5(self) -> Self
source§fn neg_px_2_5(self) -> Self
fn neg_px_2_5(self) -> Self
source§fn neg_px_3_5(self) -> Self
fn neg_px_3_5(self) -> Self
source§fn neg_px_4_5(self) -> Self
fn neg_px_4_5(self) -> Self
source§fn neg_px_1_6(self) -> Self
fn neg_px_1_6(self) -> Self
source§fn neg_px_5_6(self) -> Self
fn neg_px_5_6(self) -> Self
source§fn neg_px_1_12(self) -> Self
fn neg_px_1_12(self) -> Self
source§fn py(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn py(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the vertical padding of the element. Docs
source§fn neg_py_0p5(self) -> Self
fn neg_py_0p5(self) -> Self
source§fn neg_py_1p5(self) -> Self
fn neg_py_1p5(self) -> Self
source§fn neg_py_2p5(self) -> Self
fn neg_py_2p5(self) -> Self
source§fn neg_py_3p5(self) -> Self
fn neg_py_3p5(self) -> Self
source§fn neg_py_full(self) -> Self
fn neg_py_full(self) -> Self
source§fn neg_py_1_2(self) -> Self
fn neg_py_1_2(self) -> Self
source§fn neg_py_1_3(self) -> Self
fn neg_py_1_3(self) -> Self
source§fn neg_py_2_3(self) -> Self
fn neg_py_2_3(self) -> Self
source§fn neg_py_1_4(self) -> Self
fn neg_py_1_4(self) -> Self
source§fn neg_py_2_4(self) -> Self
fn neg_py_2_4(self) -> Self
source§fn neg_py_3_4(self) -> Self
fn neg_py_3_4(self) -> Self
source§fn neg_py_1_5(self) -> Self
fn neg_py_1_5(self) -> Self
source§fn neg_py_2_5(self) -> Self
fn neg_py_2_5(self) -> Self
source§fn neg_py_3_5(self) -> Self
fn neg_py_3_5(self) -> Self
source§fn neg_py_4_5(self) -> Self
fn neg_py_4_5(self) -> Self
source§fn neg_py_1_6(self) -> Self
fn neg_py_1_6(self) -> Self
source§fn neg_py_5_6(self) -> Self
fn neg_py_5_6(self) -> Self
source§fn neg_py_1_12(self) -> Self
fn neg_py_1_12(self) -> Self
source§fn pl(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pl(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the left padding of the element. Docs
source§fn neg_pl_0p5(self) -> Self
fn neg_pl_0p5(self) -> Self
source§fn neg_pl_1p5(self) -> Self
fn neg_pl_1p5(self) -> Self
source§fn neg_pl_2p5(self) -> Self
fn neg_pl_2p5(self) -> Self
source§fn neg_pl_3p5(self) -> Self
fn neg_pl_3p5(self) -> Self
source§fn neg_pl_full(self) -> Self
fn neg_pl_full(self) -> Self
source§fn neg_pl_1_2(self) -> Self
fn neg_pl_1_2(self) -> Self
source§fn neg_pl_1_3(self) -> Self
fn neg_pl_1_3(self) -> Self
source§fn neg_pl_2_3(self) -> Self
fn neg_pl_2_3(self) -> Self
source§fn neg_pl_1_4(self) -> Self
fn neg_pl_1_4(self) -> Self
source§fn neg_pl_2_4(self) -> Self
fn neg_pl_2_4(self) -> Self
source§fn neg_pl_3_4(self) -> Self
fn neg_pl_3_4(self) -> Self
source§fn neg_pl_1_5(self) -> Self
fn neg_pl_1_5(self) -> Self
source§fn neg_pl_2_5(self) -> Self
fn neg_pl_2_5(self) -> Self
source§fn neg_pl_3_5(self) -> Self
fn neg_pl_3_5(self) -> Self
source§fn neg_pl_4_5(self) -> Self
fn neg_pl_4_5(self) -> Self
source§fn neg_pl_1_6(self) -> Self
fn neg_pl_1_6(self) -> Self
source§fn neg_pl_5_6(self) -> Self
fn neg_pl_5_6(self) -> Self
source§fn neg_pl_1_12(self) -> Self
fn neg_pl_1_12(self) -> Self
source§fn pr(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pr(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the right padding of the element. Docs
source§fn neg_pr_0p5(self) -> Self
fn neg_pr_0p5(self) -> Self
source§fn neg_pr_1p5(self) -> Self
fn neg_pr_1p5(self) -> Self
source§fn neg_pr_2p5(self) -> Self
fn neg_pr_2p5(self) -> Self
source§fn neg_pr_3p5(self) -> Self
fn neg_pr_3p5(self) -> Self
source§fn neg_pr_full(self) -> Self
fn neg_pr_full(self) -> Self
source§fn neg_pr_1_2(self) -> Self
fn neg_pr_1_2(self) -> Self
source§fn neg_pr_1_3(self) -> Self
fn neg_pr_1_3(self) -> Self
source§fn neg_pr_2_3(self) -> Self
fn neg_pr_2_3(self) -> Self
source§fn neg_pr_1_4(self) -> Self
fn neg_pr_1_4(self) -> Self
source§fn neg_pr_2_4(self) -> Self
fn neg_pr_2_4(self) -> Self
source§fn neg_pr_3_4(self) -> Self
fn neg_pr_3_4(self) -> Self
source§fn neg_pr_1_5(self) -> Self
fn neg_pr_1_5(self) -> Self
source§fn neg_pr_2_5(self) -> Self
fn neg_pr_2_5(self) -> Self
source§fn neg_pr_3_5(self) -> Self
fn neg_pr_3_5(self) -> Self
source§fn neg_pr_4_5(self) -> Self
fn neg_pr_4_5(self) -> Self
source§fn neg_pr_1_6(self) -> Self
fn neg_pr_1_6(self) -> Self
source§fn neg_pr_5_6(self) -> Self
fn neg_pr_5_6(self) -> Self
source§fn neg_pr_1_12(self) -> Self
fn neg_pr_1_12(self) -> Self
source§fn inset(self, length: impl Clone + Into<Length>) -> Self
fn inset(self, length: impl Clone + Into<Length>) -> Self
Sets the top, right, bottom, and left values of a positioned element. Docs
source§fn neg_inset_0(self) -> Self
fn neg_inset_0(self) -> Self
source§fn neg_inset_0p5(self) -> Self
fn neg_inset_0p5(self) -> Self
source§fn neg_inset_1(self) -> Self
fn neg_inset_1(self) -> Self
source§fn neg_inset_1p5(self) -> Self
fn neg_inset_1p5(self) -> Self
source§fn neg_inset_2(self) -> Self
fn neg_inset_2(self) -> Self
source§fn neg_inset_2p5(self) -> Self
fn neg_inset_2p5(self) -> Self
source§fn neg_inset_3(self) -> Self
fn neg_inset_3(self) -> Self
source§fn neg_inset_3p5(self) -> Self
fn neg_inset_3p5(self) -> Self
source§fn neg_inset_4(self) -> Self
fn neg_inset_4(self) -> Self
source§fn neg_inset_5(self) -> Self
fn neg_inset_5(self) -> Self
source§fn neg_inset_6(self) -> Self
fn neg_inset_6(self) -> Self
source§fn neg_inset_7(self) -> Self
fn neg_inset_7(self) -> Self
source§fn neg_inset_8(self) -> Self
fn neg_inset_8(self) -> Self
source§fn neg_inset_9(self) -> Self
fn neg_inset_9(self) -> Self
source§fn neg_inset_10(self) -> Self
fn neg_inset_10(self) -> Self
source§fn neg_inset_11(self) -> Self
fn neg_inset_11(self) -> Self
source§fn neg_inset_12(self) -> Self
fn neg_inset_12(self) -> Self
source§fn neg_inset_16(self) -> Self
fn neg_inset_16(self) -> Self
source§fn neg_inset_20(self) -> Self
fn neg_inset_20(self) -> Self
source§fn neg_inset_24(self) -> Self
fn neg_inset_24(self) -> Self
source§fn neg_inset_32(self) -> Self
fn neg_inset_32(self) -> Self
source§fn neg_inset_40(self) -> Self
fn neg_inset_40(self) -> Self
source§fn neg_inset_48(self) -> Self
fn neg_inset_48(self) -> Self
source§fn neg_inset_56(self) -> Self
fn neg_inset_56(self) -> Self
source§fn neg_inset_64(self) -> Self
fn neg_inset_64(self) -> Self
source§fn neg_inset_72(self) -> Self
fn neg_inset_72(self) -> Self
source§fn neg_inset_80(self) -> Self
fn neg_inset_80(self) -> Self
source§fn neg_inset_96(self) -> Self
fn neg_inset_96(self) -> Self
source§fn inset_auto(self) -> Self
fn inset_auto(self) -> Self
source§fn neg_inset_px(self) -> Self
fn neg_inset_px(self) -> Self
source§fn inset_full(self) -> Self
fn inset_full(self) -> Self
source§fn neg_inset_full(self) -> Self
fn neg_inset_full(self) -> Self
source§fn neg_inset_1_2(self) -> Self
fn neg_inset_1_2(self) -> Self
source§fn neg_inset_1_3(self) -> Self
fn neg_inset_1_3(self) -> Self
source§fn neg_inset_2_3(self) -> Self
fn neg_inset_2_3(self) -> Self
source§fn neg_inset_1_4(self) -> Self
fn neg_inset_1_4(self) -> Self
source§fn neg_inset_2_4(self) -> Self
fn neg_inset_2_4(self) -> Self
source§fn neg_inset_3_4(self) -> Self
fn neg_inset_3_4(self) -> Self
source§fn neg_inset_1_5(self) -> Self
fn neg_inset_1_5(self) -> Self
source§fn neg_inset_2_5(self) -> Self
fn neg_inset_2_5(self) -> Self
source§fn neg_inset_3_5(self) -> Self
fn neg_inset_3_5(self) -> Self
source§fn neg_inset_4_5(self) -> Self
fn neg_inset_4_5(self) -> Self
source§fn neg_inset_1_6(self) -> Self
fn neg_inset_1_6(self) -> Self
source§fn neg_inset_5_6(self) -> Self
fn neg_inset_5_6(self) -> Self
source§fn inset_1_12(self) -> Self
fn inset_1_12(self) -> Self
source§fn neg_inset_1_12(self) -> Self
fn neg_inset_1_12(self) -> Self
source§fn top(self, length: impl Clone + Into<Length>) -> Self
fn top(self, length: impl Clone + Into<Length>) -> Self
Sets the top value of a positioned element. Docs
source§fn neg_top_0p5(self) -> Self
fn neg_top_0p5(self) -> Self
source§fn neg_top_1p5(self) -> Self
fn neg_top_1p5(self) -> Self
source§fn neg_top_2p5(self) -> Self
fn neg_top_2p5(self) -> Self
source§fn neg_top_3p5(self) -> Self
fn neg_top_3p5(self) -> Self
source§fn neg_top_10(self) -> Self
fn neg_top_10(self) -> Self
source§fn neg_top_11(self) -> Self
fn neg_top_11(self) -> Self
source§fn neg_top_12(self) -> Self
fn neg_top_12(self) -> Self
source§fn neg_top_16(self) -> Self
fn neg_top_16(self) -> Self
source§fn neg_top_20(self) -> Self
fn neg_top_20(self) -> Self
source§fn neg_top_24(self) -> Self
fn neg_top_24(self) -> Self
source§fn neg_top_32(self) -> Self
fn neg_top_32(self) -> Self
source§fn neg_top_40(self) -> Self
fn neg_top_40(self) -> Self
source§fn neg_top_48(self) -> Self
fn neg_top_48(self) -> Self
source§fn neg_top_56(self) -> Self
fn neg_top_56(self) -> Self
source§fn neg_top_64(self) -> Self
fn neg_top_64(self) -> Self
source§fn neg_top_72(self) -> Self
fn neg_top_72(self) -> Self
source§fn neg_top_80(self) -> Self
fn neg_top_80(self) -> Self
source§fn neg_top_96(self) -> Self
fn neg_top_96(self) -> Self
source§fn neg_top_px(self) -> Self
fn neg_top_px(self) -> Self
source§fn neg_top_full(self) -> Self
fn neg_top_full(self) -> Self
source§fn neg_top_1_2(self) -> Self
fn neg_top_1_2(self) -> Self
source§fn neg_top_1_3(self) -> Self
fn neg_top_1_3(self) -> Self
source§fn neg_top_2_3(self) -> Self
fn neg_top_2_3(self) -> Self
source§fn neg_top_1_4(self) -> Self
fn neg_top_1_4(self) -> Self
source§fn neg_top_2_4(self) -> Self
fn neg_top_2_4(self) -> Self
source§fn neg_top_3_4(self) -> Self
fn neg_top_3_4(self) -> Self
source§fn neg_top_1_5(self) -> Self
fn neg_top_1_5(self) -> Self
source§fn neg_top_2_5(self) -> Self
fn neg_top_2_5(self) -> Self
source§fn neg_top_3_5(self) -> Self
fn neg_top_3_5(self) -> Self
source§fn neg_top_4_5(self) -> Self
fn neg_top_4_5(self) -> Self
source§fn neg_top_1_6(self) -> Self
fn neg_top_1_6(self) -> Self
source§fn neg_top_5_6(self) -> Self
fn neg_top_5_6(self) -> Self
source§fn neg_top_1_12(self) -> Self
fn neg_top_1_12(self) -> Self
source§fn bottom(self, length: impl Clone + Into<Length>) -> Self
fn bottom(self, length: impl Clone + Into<Length>) -> Self
Sets the bottom value of a positioned element. Docs
source§fn neg_bottom_0(self) -> Self
fn neg_bottom_0(self) -> Self
source§fn bottom_0p5(self) -> Self
fn bottom_0p5(self) -> Self
source§fn neg_bottom_0p5(self) -> Self
fn neg_bottom_0p5(self) -> Self
source§fn neg_bottom_1(self) -> Self
fn neg_bottom_1(self) -> Self
source§fn bottom_1p5(self) -> Self
fn bottom_1p5(self) -> Self
source§fn neg_bottom_1p5(self) -> Self
fn neg_bottom_1p5(self) -> Self
source§fn neg_bottom_2(self) -> Self
fn neg_bottom_2(self) -> Self
source§fn bottom_2p5(self) -> Self
fn bottom_2p5(self) -> Self
source§fn neg_bottom_2p5(self) -> Self
fn neg_bottom_2p5(self) -> Self
source§fn neg_bottom_3(self) -> Self
fn neg_bottom_3(self) -> Self
source§fn bottom_3p5(self) -> Self
fn bottom_3p5(self) -> Self
source§fn neg_bottom_3p5(self) -> Self
fn neg_bottom_3p5(self) -> Self
source§fn neg_bottom_4(self) -> Self
fn neg_bottom_4(self) -> Self
source§fn neg_bottom_5(self) -> Self
fn neg_bottom_5(self) -> Self
source§fn neg_bottom_6(self) -> Self
fn neg_bottom_6(self) -> Self
source§fn neg_bottom_7(self) -> Self
fn neg_bottom_7(self) -> Self
source§fn neg_bottom_8(self) -> Self
fn neg_bottom_8(self) -> Self
source§fn neg_bottom_9(self) -> Self
fn neg_bottom_9(self) -> Self
source§fn neg_bottom_10(self) -> Self
fn neg_bottom_10(self) -> Self
source§fn neg_bottom_11(self) -> Self
fn neg_bottom_11(self) -> Self
source§fn neg_bottom_12(self) -> Self
fn neg_bottom_12(self) -> Self
source§fn neg_bottom_16(self) -> Self
fn neg_bottom_16(self) -> Self
source§fn neg_bottom_20(self) -> Self
fn neg_bottom_20(self) -> Self
source§fn neg_bottom_24(self) -> Self
fn neg_bottom_24(self) -> Self
source§fn neg_bottom_32(self) -> Self
fn neg_bottom_32(self) -> Self
source§fn neg_bottom_40(self) -> Self
fn neg_bottom_40(self) -> Self
source§fn neg_bottom_48(self) -> Self
fn neg_bottom_48(self) -> Self
source§fn neg_bottom_56(self) -> Self
fn neg_bottom_56(self) -> Self
source§fn neg_bottom_64(self) -> Self
fn neg_bottom_64(self) -> Self
source§fn neg_bottom_72(self) -> Self
fn neg_bottom_72(self) -> Self
source§fn neg_bottom_80(self) -> Self
fn neg_bottom_80(self) -> Self
source§fn neg_bottom_96(self) -> Self
fn neg_bottom_96(self) -> Self
source§fn bottom_auto(self) -> Self
fn bottom_auto(self) -> Self
source§fn neg_bottom_px(self) -> Self
fn neg_bottom_px(self) -> Self
source§fn bottom_full(self) -> Self
fn bottom_full(self) -> Self
source§fn neg_bottom_full(self) -> Self
fn neg_bottom_full(self) -> Self
source§fn bottom_1_2(self) -> Self
fn bottom_1_2(self) -> Self
source§fn neg_bottom_1_2(self) -> Self
fn neg_bottom_1_2(self) -> Self
source§fn bottom_1_3(self) -> Self
fn bottom_1_3(self) -> Self
source§fn neg_bottom_1_3(self) -> Self
fn neg_bottom_1_3(self) -> Self
source§fn bottom_2_3(self) -> Self
fn bottom_2_3(self) -> Self
source§fn neg_bottom_2_3(self) -> Self
fn neg_bottom_2_3(self) -> Self
source§fn bottom_1_4(self) -> Self
fn bottom_1_4(self) -> Self
source§fn neg_bottom_1_4(self) -> Self
fn neg_bottom_1_4(self) -> Self
source§fn bottom_2_4(self) -> Self
fn bottom_2_4(self) -> Self
source§fn neg_bottom_2_4(self) -> Self
fn neg_bottom_2_4(self) -> Self
source§fn bottom_3_4(self) -> Self
fn bottom_3_4(self) -> Self
source§fn neg_bottom_3_4(self) -> Self
fn neg_bottom_3_4(self) -> Self
source§fn bottom_1_5(self) -> Self
fn bottom_1_5(self) -> Self
source§fn neg_bottom_1_5(self) -> Self
fn neg_bottom_1_5(self) -> Self
source§fn bottom_2_5(self) -> Self
fn bottom_2_5(self) -> Self
source§fn neg_bottom_2_5(self) -> Self
fn neg_bottom_2_5(self) -> Self
source§fn bottom_3_5(self) -> Self
fn bottom_3_5(self) -> Self
source§fn neg_bottom_3_5(self) -> Self
fn neg_bottom_3_5(self) -> Self
source§fn bottom_4_5(self) -> Self
fn bottom_4_5(self) -> Self
source§fn neg_bottom_4_5(self) -> Self
fn neg_bottom_4_5(self) -> Self
source§fn bottom_1_6(self) -> Self
fn bottom_1_6(self) -> Self
source§fn neg_bottom_1_6(self) -> Self
fn neg_bottom_1_6(self) -> Self
source§fn bottom_5_6(self) -> Self
fn bottom_5_6(self) -> Self
source§fn neg_bottom_5_6(self) -> Self
fn neg_bottom_5_6(self) -> Self
source§fn bottom_1_12(self) -> Self
fn bottom_1_12(self) -> Self
source§fn neg_bottom_1_12(self) -> Self
fn neg_bottom_1_12(self) -> Self
source§fn left(self, length: impl Clone + Into<Length>) -> Self
fn left(self, length: impl Clone + Into<Length>) -> Self
Sets the left value of a positioned element. Docs
source§fn neg_left_0(self) -> Self
fn neg_left_0(self) -> Self
source§fn neg_left_0p5(self) -> Self
fn neg_left_0p5(self) -> Self
source§fn neg_left_1(self) -> Self
fn neg_left_1(self) -> Self
source§fn neg_left_1p5(self) -> Self
fn neg_left_1p5(self) -> Self
source§fn neg_left_2(self) -> Self
fn neg_left_2(self) -> Self
source§fn neg_left_2p5(self) -> Self
fn neg_left_2p5(self) -> Self
source§fn neg_left_3(self) -> Self
fn neg_left_3(self) -> Self
source§fn neg_left_3p5(self) -> Self
fn neg_left_3p5(self) -> Self
source§fn neg_left_4(self) -> Self
fn neg_left_4(self) -> Self
source§fn neg_left_5(self) -> Self
fn neg_left_5(self) -> Self
source§fn neg_left_6(self) -> Self
fn neg_left_6(self) -> Self
source§fn neg_left_7(self) -> Self
fn neg_left_7(self) -> Self
source§fn neg_left_8(self) -> Self
fn neg_left_8(self) -> Self
source§fn neg_left_9(self) -> Self
fn neg_left_9(self) -> Self
source§fn neg_left_10(self) -> Self
fn neg_left_10(self) -> Self
source§fn neg_left_11(self) -> Self
fn neg_left_11(self) -> Self
source§fn neg_left_12(self) -> Self
fn neg_left_12(self) -> Self
source§fn neg_left_16(self) -> Self
fn neg_left_16(self) -> Self
source§fn neg_left_20(self) -> Self
fn neg_left_20(self) -> Self
source§fn neg_left_24(self) -> Self
fn neg_left_24(self) -> Self
source§fn neg_left_32(self) -> Self
fn neg_left_32(self) -> Self
source§fn neg_left_40(self) -> Self
fn neg_left_40(self) -> Self
source§fn neg_left_48(self) -> Self
fn neg_left_48(self) -> Self
source§fn neg_left_56(self) -> Self
fn neg_left_56(self) -> Self
source§fn neg_left_64(self) -> Self
fn neg_left_64(self) -> Self
source§fn neg_left_72(self) -> Self
fn neg_left_72(self) -> Self
source§fn neg_left_80(self) -> Self
fn neg_left_80(self) -> Self
source§fn neg_left_96(self) -> Self
fn neg_left_96(self) -> Self
source§fn neg_left_px(self) -> Self
fn neg_left_px(self) -> Self
source§fn neg_left_full(self) -> Self
fn neg_left_full(self) -> Self
source§fn neg_left_1_2(self) -> Self
fn neg_left_1_2(self) -> Self
source§fn neg_left_1_3(self) -> Self
fn neg_left_1_3(self) -> Self
source§fn neg_left_2_3(self) -> Self
fn neg_left_2_3(self) -> Self
source§fn neg_left_1_4(self) -> Self
fn neg_left_1_4(self) -> Self
source§fn neg_left_2_4(self) -> Self
fn neg_left_2_4(self) -> Self
source§fn neg_left_3_4(self) -> Self
fn neg_left_3_4(self) -> Self
source§fn neg_left_1_5(self) -> Self
fn neg_left_1_5(self) -> Self
source§fn neg_left_2_5(self) -> Self
fn neg_left_2_5(self) -> Self
source§fn neg_left_3_5(self) -> Self
fn neg_left_3_5(self) -> Self
source§fn neg_left_4_5(self) -> Self
fn neg_left_4_5(self) -> Self
source§fn neg_left_1_6(self) -> Self
fn neg_left_1_6(self) -> Self
source§fn neg_left_5_6(self) -> Self
fn neg_left_5_6(self) -> Self
source§fn neg_left_1_12(self) -> Self
fn neg_left_1_12(self) -> Self
source§fn right(self, length: impl Clone + Into<Length>) -> Self
fn right(self, length: impl Clone + Into<Length>) -> Self
Sets the right value of a positioned element. Docs
source§fn neg_right_0(self) -> Self
fn neg_right_0(self) -> Self
source§fn neg_right_0p5(self) -> Self
fn neg_right_0p5(self) -> Self
source§fn neg_right_1(self) -> Self
fn neg_right_1(self) -> Self
source§fn neg_right_1p5(self) -> Self
fn neg_right_1p5(self) -> Self
source§fn neg_right_2(self) -> Self
fn neg_right_2(self) -> Self
source§fn neg_right_2p5(self) -> Self
fn neg_right_2p5(self) -> Self
source§fn neg_right_3(self) -> Self
fn neg_right_3(self) -> Self
source§fn neg_right_3p5(self) -> Self
fn neg_right_3p5(self) -> Self
source§fn neg_right_4(self) -> Self
fn neg_right_4(self) -> Self
source§fn neg_right_5(self) -> Self
fn neg_right_5(self) -> Self
source§fn neg_right_6(self) -> Self
fn neg_right_6(self) -> Self
source§fn neg_right_7(self) -> Self
fn neg_right_7(self) -> Self
source§fn neg_right_8(self) -> Self
fn neg_right_8(self) -> Self
source§fn neg_right_9(self) -> Self
fn neg_right_9(self) -> Self
source§fn neg_right_10(self) -> Self
fn neg_right_10(self) -> Self
source§fn neg_right_11(self) -> Self
fn neg_right_11(self) -> Self
source§fn neg_right_12(self) -> Self
fn neg_right_12(self) -> Self
source§fn neg_right_16(self) -> Self
fn neg_right_16(self) -> Self
source§fn neg_right_20(self) -> Self
fn neg_right_20(self) -> Self
source§fn neg_right_24(self) -> Self
fn neg_right_24(self) -> Self
source§fn neg_right_32(self) -> Self
fn neg_right_32(self) -> Self
source§fn neg_right_40(self) -> Self
fn neg_right_40(self) -> Self
source§fn neg_right_48(self) -> Self
fn neg_right_48(self) -> Self
source§fn neg_right_56(self) -> Self
fn neg_right_56(self) -> Self
source§fn neg_right_64(self) -> Self
fn neg_right_64(self) -> Self
source§fn neg_right_72(self) -> Self
fn neg_right_72(self) -> Self
source§fn neg_right_80(self) -> Self
fn neg_right_80(self) -> Self
source§fn neg_right_96(self) -> Self
fn neg_right_96(self) -> Self
source§fn right_auto(self) -> Self
fn right_auto(self) -> Self
source§fn neg_right_px(self) -> Self
fn neg_right_px(self) -> Self
source§fn right_full(self) -> Self
fn right_full(self) -> Self
source§fn neg_right_full(self) -> Self
fn neg_right_full(self) -> Self
source§fn neg_right_1_2(self) -> Self
fn neg_right_1_2(self) -> Self
source§fn neg_right_1_3(self) -> Self
fn neg_right_1_3(self) -> Self
source§fn neg_right_2_3(self) -> Self
fn neg_right_2_3(self) -> Self
source§fn neg_right_1_4(self) -> Self
fn neg_right_1_4(self) -> Self
source§fn neg_right_2_4(self) -> Self
fn neg_right_2_4(self) -> Self
source§fn neg_right_3_4(self) -> Self
fn neg_right_3_4(self) -> Self
source§fn neg_right_1_5(self) -> Self
fn neg_right_1_5(self) -> Self
source§fn neg_right_2_5(self) -> Self
fn neg_right_2_5(self) -> Self
source§fn neg_right_3_5(self) -> Self
fn neg_right_3_5(self) -> Self
source§fn neg_right_4_5(self) -> Self
fn neg_right_4_5(self) -> Self
source§fn neg_right_1_6(self) -> Self
fn neg_right_1_6(self) -> Self
source§fn neg_right_5_6(self) -> Self
fn neg_right_5_6(self) -> Self
source§fn right_1_12(self) -> Self
fn right_1_12(self) -> Self
source§fn neg_right_1_12(self) -> Self
fn neg_right_1_12(self) -> Self
source§fn gap(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn gap(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the gap between rows and columns in flex layouts. Docs
source§fn neg_gap_0p5(self) -> Self
fn neg_gap_0p5(self) -> Self
source§fn neg_gap_1p5(self) -> Self
fn neg_gap_1p5(self) -> Self
source§fn neg_gap_2p5(self) -> Self
fn neg_gap_2p5(self) -> Self
source§fn neg_gap_3p5(self) -> Self
fn neg_gap_3p5(self) -> Self
source§fn neg_gap_10(self) -> Self
fn neg_gap_10(self) -> Self
source§fn neg_gap_11(self) -> Self
fn neg_gap_11(self) -> Self
source§fn neg_gap_12(self) -> Self
fn neg_gap_12(self) -> Self
source§fn neg_gap_16(self) -> Self
fn neg_gap_16(self) -> Self
source§fn neg_gap_20(self) -> Self
fn neg_gap_20(self) -> Self
source§fn neg_gap_24(self) -> Self
fn neg_gap_24(self) -> Self
source§fn neg_gap_32(self) -> Self
fn neg_gap_32(self) -> Self
source§fn neg_gap_40(self) -> Self
fn neg_gap_40(self) -> Self
source§fn neg_gap_48(self) -> Self
fn neg_gap_48(self) -> Self
source§fn neg_gap_56(self) -> Self
fn neg_gap_56(self) -> Self
source§fn neg_gap_64(self) -> Self
fn neg_gap_64(self) -> Self
source§fn neg_gap_72(self) -> Self
fn neg_gap_72(self) -> Self
source§fn neg_gap_80(self) -> Self
fn neg_gap_80(self) -> Self
source§fn neg_gap_96(self) -> Self
fn neg_gap_96(self) -> Self
source§fn neg_gap_px(self) -> Self
fn neg_gap_px(self) -> Self
source§fn neg_gap_full(self) -> Self
fn neg_gap_full(self) -> Self
source§fn neg_gap_1_2(self) -> Self
fn neg_gap_1_2(self) -> Self
source§fn neg_gap_1_3(self) -> Self
fn neg_gap_1_3(self) -> Self
source§fn neg_gap_2_3(self) -> Self
fn neg_gap_2_3(self) -> Self
source§fn neg_gap_1_4(self) -> Self
fn neg_gap_1_4(self) -> Self
source§fn neg_gap_2_4(self) -> Self
fn neg_gap_2_4(self) -> Self
source§fn neg_gap_3_4(self) -> Self
fn neg_gap_3_4(self) -> Self
source§fn neg_gap_1_5(self) -> Self
fn neg_gap_1_5(self) -> Self
source§fn neg_gap_2_5(self) -> Self
fn neg_gap_2_5(self) -> Self
source§fn neg_gap_3_5(self) -> Self
fn neg_gap_3_5(self) -> Self
source§fn neg_gap_4_5(self) -> Self
fn neg_gap_4_5(self) -> Self
source§fn neg_gap_1_6(self) -> Self
fn neg_gap_1_6(self) -> Self
source§fn neg_gap_5_6(self) -> Self
fn neg_gap_5_6(self) -> Self
source§fn neg_gap_1_12(self) -> Self
fn neg_gap_1_12(self) -> Self
source§fn gap_x(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn gap_x(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the gap between columns in flex layouts. Docs
source§fn neg_gap_x_0(self) -> Self
fn neg_gap_x_0(self) -> Self
source§fn neg_gap_x_0p5(self) -> Self
fn neg_gap_x_0p5(self) -> Self
source§fn neg_gap_x_1(self) -> Self
fn neg_gap_x_1(self) -> Self
source§fn neg_gap_x_1p5(self) -> Self
fn neg_gap_x_1p5(self) -> Self
source§fn neg_gap_x_2(self) -> Self
fn neg_gap_x_2(self) -> Self
source§fn neg_gap_x_2p5(self) -> Self
fn neg_gap_x_2p5(self) -> Self
source§fn neg_gap_x_3(self) -> Self
fn neg_gap_x_3(self) -> Self
source§fn neg_gap_x_3p5(self) -> Self
fn neg_gap_x_3p5(self) -> Self
source§fn neg_gap_x_4(self) -> Self
fn neg_gap_x_4(self) -> Self
source§fn neg_gap_x_5(self) -> Self
fn neg_gap_x_5(self) -> Self
source§fn neg_gap_x_6(self) -> Self
fn neg_gap_x_6(self) -> Self
source§fn neg_gap_x_7(self) -> Self
fn neg_gap_x_7(self) -> Self
source§fn neg_gap_x_8(self) -> Self
fn neg_gap_x_8(self) -> Self
source§fn neg_gap_x_9(self) -> Self
fn neg_gap_x_9(self) -> Self
source§fn neg_gap_x_10(self) -> Self
fn neg_gap_x_10(self) -> Self
source§fn neg_gap_x_11(self) -> Self
fn neg_gap_x_11(self) -> Self
source§fn neg_gap_x_12(self) -> Self
fn neg_gap_x_12(self) -> Self
source§fn neg_gap_x_16(self) -> Self
fn neg_gap_x_16(self) -> Self
source§fn neg_gap_x_20(self) -> Self
fn neg_gap_x_20(self) -> Self
source§fn neg_gap_x_24(self) -> Self
fn neg_gap_x_24(self) -> Self
source§fn neg_gap_x_32(self) -> Self
fn neg_gap_x_32(self) -> Self
source§fn neg_gap_x_40(self) -> Self
fn neg_gap_x_40(self) -> Self
source§fn neg_gap_x_48(self) -> Self
fn neg_gap_x_48(self) -> Self
source§fn neg_gap_x_56(self) -> Self
fn neg_gap_x_56(self) -> Self
source§fn neg_gap_x_64(self) -> Self
fn neg_gap_x_64(self) -> Self
source§fn neg_gap_x_72(self) -> Self
fn neg_gap_x_72(self) -> Self
source§fn neg_gap_x_80(self) -> Self
fn neg_gap_x_80(self) -> Self
source§fn neg_gap_x_96(self) -> Self
fn neg_gap_x_96(self) -> Self
source§fn neg_gap_x_px(self) -> Self
fn neg_gap_x_px(self) -> Self
source§fn gap_x_full(self) -> Self
fn gap_x_full(self) -> Self
source§fn neg_gap_x_full(self) -> Self
fn neg_gap_x_full(self) -> Self
source§fn neg_gap_x_1_2(self) -> Self
fn neg_gap_x_1_2(self) -> Self
source§fn neg_gap_x_1_3(self) -> Self
fn neg_gap_x_1_3(self) -> Self
source§fn neg_gap_x_2_3(self) -> Self
fn neg_gap_x_2_3(self) -> Self
source§fn neg_gap_x_1_4(self) -> Self
fn neg_gap_x_1_4(self) -> Self
source§fn neg_gap_x_2_4(self) -> Self
fn neg_gap_x_2_4(self) -> Self
source§fn neg_gap_x_3_4(self) -> Self
fn neg_gap_x_3_4(self) -> Self
source§fn neg_gap_x_1_5(self) -> Self
fn neg_gap_x_1_5(self) -> Self
source§fn neg_gap_x_2_5(self) -> Self
fn neg_gap_x_2_5(self) -> Self
source§fn neg_gap_x_3_5(self) -> Self
fn neg_gap_x_3_5(self) -> Self
source§fn neg_gap_x_4_5(self) -> Self
fn neg_gap_x_4_5(self) -> Self
source§fn neg_gap_x_1_6(self) -> Self
fn neg_gap_x_1_6(self) -> Self
source§fn neg_gap_x_5_6(self) -> Self
fn neg_gap_x_5_6(self) -> Self
source§fn gap_x_1_12(self) -> Self
fn gap_x_1_12(self) -> Self
source§fn neg_gap_x_1_12(self) -> Self
fn neg_gap_x_1_12(self) -> Self
source§fn gap_y(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn gap_y(self, length: impl Clone + Into<DefiniteLength>) -> Self
Sets the gap between rows in flex layouts. Docs
source§fn neg_gap_y_0(self) -> Self
fn neg_gap_y_0(self) -> Self
source§fn neg_gap_y_0p5(self) -> Self
fn neg_gap_y_0p5(self) -> Self
source§fn neg_gap_y_1(self) -> Self
fn neg_gap_y_1(self) -> Self
source§fn neg_gap_y_1p5(self) -> Self
fn neg_gap_y_1p5(self) -> Self
source§fn neg_gap_y_2(self) -> Self
fn neg_gap_y_2(self) -> Self
source§fn neg_gap_y_2p5(self) -> Self
fn neg_gap_y_2p5(self) -> Self
source§fn neg_gap_y_3(self) -> Self
fn neg_gap_y_3(self) -> Self
source§fn neg_gap_y_3p5(self) -> Self
fn neg_gap_y_3p5(self) -> Self
source§fn neg_gap_y_4(self) -> Self
fn neg_gap_y_4(self) -> Self
source§fn neg_gap_y_5(self) -> Self
fn neg_gap_y_5(self) -> Self
source§fn neg_gap_y_6(self) -> Self
fn neg_gap_y_6(self) -> Self
source§fn neg_gap_y_7(self) -> Self
fn neg_gap_y_7(self) -> Self
source§fn neg_gap_y_8(self) -> Self
fn neg_gap_y_8(self) -> Self
source§fn neg_gap_y_9(self) -> Self
fn neg_gap_y_9(self) -> Self
source§fn neg_gap_y_10(self) -> Self
fn neg_gap_y_10(self) -> Self
source§fn neg_gap_y_11(self) -> Self
fn neg_gap_y_11(self) -> Self
source§fn neg_gap_y_12(self) -> Self
fn neg_gap_y_12(self) -> Self
source§fn neg_gap_y_16(self) -> Self
fn neg_gap_y_16(self) -> Self
source§fn neg_gap_y_20(self) -> Self
fn neg_gap_y_20(self) -> Self
source§fn neg_gap_y_24(self) -> Self
fn neg_gap_y_24(self) -> Self
source§fn neg_gap_y_32(self) -> Self
fn neg_gap_y_32(self) -> Self
source§fn neg_gap_y_40(self) -> Self
fn neg_gap_y_40(self) -> Self
source§fn neg_gap_y_48(self) -> Self
fn neg_gap_y_48(self) -> Self
source§fn neg_gap_y_56(self) -> Self
fn neg_gap_y_56(self) -> Self
source§fn neg_gap_y_64(self) -> Self
fn neg_gap_y_64(self) -> Self
source§fn neg_gap_y_72(self) -> Self
fn neg_gap_y_72(self) -> Self
source§fn neg_gap_y_80(self) -> Self
fn neg_gap_y_80(self) -> Self
source§fn neg_gap_y_96(self) -> Self
fn neg_gap_y_96(self) -> Self
source§fn neg_gap_y_px(self) -> Self
fn neg_gap_y_px(self) -> Self
source§fn gap_y_full(self) -> Self
fn gap_y_full(self) -> Self
source§fn neg_gap_y_full(self) -> Self
fn neg_gap_y_full(self) -> Self
source§fn neg_gap_y_1_2(self) -> Self
fn neg_gap_y_1_2(self) -> Self
source§fn neg_gap_y_1_3(self) -> Self
fn neg_gap_y_1_3(self) -> Self
source§fn neg_gap_y_2_3(self) -> Self
fn neg_gap_y_2_3(self) -> Self
source§fn neg_gap_y_1_4(self) -> Self
fn neg_gap_y_1_4(self) -> Self
source§fn neg_gap_y_2_4(self) -> Self
fn neg_gap_y_2_4(self) -> Self
source§fn neg_gap_y_3_4(self) -> Self
fn neg_gap_y_3_4(self) -> Self
source§fn neg_gap_y_1_5(self) -> Self
fn neg_gap_y_1_5(self) -> Self
source§fn neg_gap_y_2_5(self) -> Self
fn neg_gap_y_2_5(self) -> Self
source§fn neg_gap_y_3_5(self) -> Self
fn neg_gap_y_3_5(self) -> Self
source§fn neg_gap_y_4_5(self) -> Self
fn neg_gap_y_4_5(self) -> Self
source§fn neg_gap_y_1_6(self) -> Self
fn neg_gap_y_1_6(self) -> Self
source§fn neg_gap_y_5_6(self) -> Self
fn neg_gap_y_5_6(self) -> Self
source§fn gap_y_1_12(self) -> Self
fn gap_y_1_12(self) -> Self
source§fn neg_gap_y_1_12(self) -> Self
fn neg_gap_y_1_12(self) -> Self
source§fn rounded(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn rounded(self, length: impl Clone + Into<AbsoluteLength>) -> Self
Sets the border radius of the element. Docs
source§fn rounded_none(self) -> Self
fn rounded_none(self) -> Self
source§fn rounded_sm(self) -> Self
fn rounded_sm(self) -> Self
source§fn rounded_md(self) -> Self
fn rounded_md(self) -> Self
source§fn rounded_lg(self) -> Self
fn rounded_lg(self) -> Self
source§fn rounded_xl(self) -> Self
fn rounded_xl(self) -> Self
source§fn rounded_2xl(self) -> Self
fn rounded_2xl(self) -> Self
source§fn rounded_3xl(self) -> Self
fn rounded_3xl(self) -> Self
source§fn rounded_full(self) -> Self
fn rounded_full(self) -> Self
source§fn rounded_t(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_t_none(self) -> Self
source§fn rounded_t_sm(self) -> Self
fn rounded_t_sm(self) -> Self
source§fn rounded_t_md(self) -> Self
fn rounded_t_md(self) -> Self
source§fn rounded_t_lg(self) -> Self
fn rounded_t_lg(self) -> Self
source§fn rounded_t_xl(self) -> Self
fn rounded_t_xl(self) -> Self
source§fn rounded_t_2xl(self) -> Self
fn rounded_t_2xl(self) -> Self
source§fn rounded_t_3xl(self) -> Self
fn rounded_t_3xl(self) -> Self
source§fn rounded_t_full(self) -> Self
fn rounded_t_full(self) -> Self
source§fn rounded_b(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_b_none(self) -> Self
source§fn rounded_b_sm(self) -> Self
fn rounded_b_sm(self) -> Self
source§fn rounded_b_md(self) -> Self
fn rounded_b_md(self) -> Self
source§fn rounded_b_lg(self) -> Self
fn rounded_b_lg(self) -> Self
source§fn rounded_b_xl(self) -> Self
fn rounded_b_xl(self) -> Self
source§fn rounded_b_2xl(self) -> Self
fn rounded_b_2xl(self) -> Self
source§fn rounded_b_3xl(self) -> Self
fn rounded_b_3xl(self) -> Self
source§fn rounded_b_full(self) -> Self
fn rounded_b_full(self) -> Self
source§fn rounded_r(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_r_none(self) -> Self
source§fn rounded_r_sm(self) -> Self
fn rounded_r_sm(self) -> Self
source§fn rounded_r_md(self) -> Self
fn rounded_r_md(self) -> Self
source§fn rounded_r_lg(self) -> Self
fn rounded_r_lg(self) -> Self
source§fn rounded_r_xl(self) -> Self
fn rounded_r_xl(self) -> Self
source§fn rounded_r_2xl(self) -> Self
fn rounded_r_2xl(self) -> Self
source§fn rounded_r_3xl(self) -> Self
fn rounded_r_3xl(self) -> Self
source§fn rounded_r_full(self) -> Self
fn rounded_r_full(self) -> Self
source§fn rounded_l(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_l_none(self) -> Self
source§fn rounded_l_sm(self) -> Self
fn rounded_l_sm(self) -> Self
source§fn rounded_l_md(self) -> Self
fn rounded_l_md(self) -> Self
source§fn rounded_l_lg(self) -> Self
fn rounded_l_lg(self) -> Self
source§fn rounded_l_xl(self) -> Self
fn rounded_l_xl(self) -> Self
source§fn rounded_l_2xl(self) -> Self
fn rounded_l_2xl(self) -> Self
source§fn rounded_l_3xl(self) -> Self
fn rounded_l_3xl(self) -> Self
source§fn rounded_l_full(self) -> Self
fn rounded_l_full(self) -> Self
source§fn rounded_tl(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_tl_none(self) -> Self
source§fn rounded_tl_sm(self) -> Self
fn rounded_tl_sm(self) -> Self
source§fn rounded_tl_md(self) -> Self
fn rounded_tl_md(self) -> Self
source§fn rounded_tl_lg(self) -> Self
fn rounded_tl_lg(self) -> Self
source§fn rounded_tl_xl(self) -> Self
fn rounded_tl_xl(self) -> Self
source§fn rounded_tl_2xl(self) -> Self
fn rounded_tl_2xl(self) -> Self
source§fn rounded_tl_3xl(self) -> Self
fn rounded_tl_3xl(self) -> Self
source§fn rounded_tl_full(self) -> Self
fn rounded_tl_full(self) -> Self
source§fn rounded_tr(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_tr_none(self) -> Self
source§fn rounded_tr_sm(self) -> Self
fn rounded_tr_sm(self) -> Self
source§fn rounded_tr_md(self) -> Self
fn rounded_tr_md(self) -> Self
source§fn rounded_tr_lg(self) -> Self
fn rounded_tr_lg(self) -> Self
source§fn rounded_tr_xl(self) -> Self
fn rounded_tr_xl(self) -> Self
source§fn rounded_tr_2xl(self) -> Self
fn rounded_tr_2xl(self) -> Self
source§fn rounded_tr_3xl(self) -> Self
fn rounded_tr_3xl(self) -> Self
source§fn rounded_tr_full(self) -> Self
fn rounded_tr_full(self) -> Self
source§fn rounded_bl(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_bl_none(self) -> Self
source§fn rounded_bl_sm(self) -> Self
fn rounded_bl_sm(self) -> Self
source§fn rounded_bl_md(self) -> Self
fn rounded_bl_md(self) -> Self
source§fn rounded_bl_lg(self) -> Self
fn rounded_bl_lg(self) -> Self
source§fn rounded_bl_xl(self) -> Self
fn rounded_bl_xl(self) -> Self
source§fn rounded_bl_2xl(self) -> Self
fn rounded_bl_2xl(self) -> Self
source§fn rounded_bl_3xl(self) -> Self
fn rounded_bl_3xl(self) -> Self
source§fn rounded_bl_full(self) -> Self
fn rounded_bl_full(self) -> Self
source§fn rounded_br(self, length: impl Clone + Into<AbsoluteLength>) -> Self
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
fn rounded_br_none(self) -> Self
source§fn rounded_br_sm(self) -> Self
fn rounded_br_sm(self) -> Self
source§fn rounded_br_md(self) -> Self
fn rounded_br_md(self) -> Self
source§fn rounded_br_lg(self) -> Self
fn rounded_br_lg(self) -> Self
source§fn rounded_br_xl(self) -> Self
fn rounded_br_xl(self) -> Self
source§fn rounded_br_2xl(self) -> Self
fn rounded_br_2xl(self) -> Self
source§fn rounded_br_3xl(self) -> Self
fn rounded_br_3xl(self) -> Self
source§fn rounded_br_full(self) -> Self
fn rounded_br_full(self) -> Self
source§fn border_t_0(self) -> Self
fn border_t_0(self) -> Self
source§fn border_t_1(self) -> Self
fn border_t_1(self) -> Self
source§fn border_t_2(self) -> Self
fn border_t_2(self) -> Self
source§fn border_t_3(self) -> Self
fn border_t_3(self) -> Self
source§fn border_t_4(self) -> Self
fn border_t_4(self) -> Self
source§fn border_t_5(self) -> Self
fn border_t_5(self) -> Self
source§fn border_t_6(self) -> Self
fn border_t_6(self) -> Self
source§fn border_t_7(self) -> Self
fn border_t_7(self) -> Self
source§fn border_t_8(self) -> Self
fn border_t_8(self) -> Self
source§fn border_t_9(self) -> Self
fn border_t_9(self) -> Self
source§fn border_t_10(self) -> Self
fn border_t_10(self) -> Self
source§fn border_t_11(self) -> Self
fn border_t_11(self) -> Self
source§fn border_t_12(self) -> Self
fn border_t_12(self) -> Self
source§fn border_t_16(self) -> Self
fn border_t_16(self) -> Self
source§fn border_t_20(self) -> Self
fn border_t_20(self) -> Self
source§fn border_t_24(self) -> Self
fn border_t_24(self) -> Self
source§fn border_t_32(self) -> Self
fn border_t_32(self) -> Self
source§fn border_b_0(self) -> Self
fn border_b_0(self) -> Self
source§fn border_b_1(self) -> Self
fn border_b_1(self) -> Self
source§fn border_b_2(self) -> Self
fn border_b_2(self) -> Self
source§fn border_b_3(self) -> Self
fn border_b_3(self) -> Self
source§fn border_b_4(self) -> Self
fn border_b_4(self) -> Self
source§fn border_b_5(self) -> Self
fn border_b_5(self) -> Self
source§fn border_b_6(self) -> Self
fn border_b_6(self) -> Self
source§fn border_b_7(self) -> Self
fn border_b_7(self) -> Self
source§fn border_b_8(self) -> Self
fn border_b_8(self) -> Self
source§fn border_b_9(self) -> Self
fn border_b_9(self) -> Self
source§fn border_b_10(self) -> Self
fn border_b_10(self) -> Self
source§fn border_b_11(self) -> Self
fn border_b_11(self) -> Self
source§fn border_b_12(self) -> Self
fn border_b_12(self) -> Self
source§fn border_b_16(self) -> Self
fn border_b_16(self) -> Self
source§fn border_b_20(self) -> Self
fn border_b_20(self) -> Self
source§fn border_b_24(self) -> Self
fn border_b_24(self) -> Self
source§fn border_b_32(self) -> Self
fn border_b_32(self) -> Self
source§fn border_r_0(self) -> Self
fn border_r_0(self) -> Self
source§fn border_r_1(self) -> Self
fn border_r_1(self) -> Self
source§fn border_r_2(self) -> Self
fn border_r_2(self) -> Self
source§fn border_r_3(self) -> Self
fn border_r_3(self) -> Self
source§fn border_r_4(self) -> Self
fn border_r_4(self) -> Self
source§fn border_r_5(self) -> Self
fn border_r_5(self) -> Self
source§fn border_r_6(self) -> Self
fn border_r_6(self) -> Self
source§fn border_r_7(self) -> Self
fn border_r_7(self) -> Self
source§fn border_r_8(self) -> Self
fn border_r_8(self) -> Self
source§fn border_r_9(self) -> Self
fn border_r_9(self) -> Self
source§fn border_r_10(self) -> Self
fn border_r_10(self) -> Self
source§fn border_r_11(self) -> Self
fn border_r_11(self) -> Self
source§fn border_r_12(self) -> Self
fn border_r_12(self) -> Self
source§fn border_r_16(self) -> Self
fn border_r_16(self) -> Self
source§fn border_r_20(self) -> Self
fn border_r_20(self) -> Self
source§fn border_r_24(self) -> Self
fn border_r_24(self) -> Self
source§fn border_r_32(self) -> Self
fn border_r_32(self) -> Self
source§fn border_l_0(self) -> Self
fn border_l_0(self) -> Self
source§fn border_l_1(self) -> Self
fn border_l_1(self) -> Self
source§fn border_l_2(self) -> Self
fn border_l_2(self) -> Self
source§fn border_l_3(self) -> Self
fn border_l_3(self) -> Self
source§fn border_l_4(self) -> Self
fn border_l_4(self) -> Self
source§fn border_l_5(self) -> Self
fn border_l_5(self) -> Self
source§fn border_l_6(self) -> Self
fn border_l_6(self) -> Self
source§fn border_l_7(self) -> Self
fn border_l_7(self) -> Self
source§fn border_l_8(self) -> Self
fn border_l_8(self) -> Self
source§fn border_l_9(self) -> Self
fn border_l_9(self) -> Self
source§fn border_l_10(self) -> Self
fn border_l_10(self) -> Self
source§fn border_l_11(self) -> Self
fn border_l_11(self) -> Self
source§fn border_l_12(self) -> Self
fn border_l_12(self) -> Self
source§fn border_l_16(self) -> Self
fn border_l_16(self) -> Self
source§fn border_l_20(self) -> Self
fn border_l_20(self) -> Self
source§fn border_l_24(self) -> Self
fn border_l_24(self) -> Self
source§fn border_l_32(self) -> Self
fn border_l_32(self) -> Self
source§fn border_x_0(self) -> Self
fn border_x_0(self) -> Self
source§fn border_x_1(self) -> Self
fn border_x_1(self) -> Self
source§fn border_x_2(self) -> Self
fn border_x_2(self) -> Self
source§fn border_x_3(self) -> Self
fn border_x_3(self) -> Self
source§fn border_x_4(self) -> Self
fn border_x_4(self) -> Self
source§fn border_x_5(self) -> Self
fn border_x_5(self) -> Self
source§fn border_x_6(self) -> Self
fn border_x_6(self) -> Self
source§fn border_x_7(self) -> Self
fn border_x_7(self) -> Self
source§fn border_x_8(self) -> Self
fn border_x_8(self) -> Self
source§fn border_x_9(self) -> Self
fn border_x_9(self) -> Self
source§fn border_x_10(self) -> Self
fn border_x_10(self) -> Self
source§fn border_x_11(self) -> Self
fn border_x_11(self) -> Self
source§fn border_x_12(self) -> Self
fn border_x_12(self) -> Self
source§fn border_x_16(self) -> Self
fn border_x_16(self) -> Self
source§fn border_x_20(self) -> Self
fn border_x_20(self) -> Self
source§fn border_x_24(self) -> Self
fn border_x_24(self) -> Self
source§fn border_x_32(self) -> Self
fn border_x_32(self) -> Self
source§fn border_y_0(self) -> Self
fn border_y_0(self) -> Self
source§fn border_y_1(self) -> Self
fn border_y_1(self) -> Self
source§fn border_y_2(self) -> Self
fn border_y_2(self) -> Self
source§fn border_y_3(self) -> Self
fn border_y_3(self) -> Self
source§fn border_y_4(self) -> Self
fn border_y_4(self) -> Self
source§fn border_y_5(self) -> Self
fn border_y_5(self) -> Self
source§fn border_y_6(self) -> Self
fn border_y_6(self) -> Self
source§fn border_y_7(self) -> Self
fn border_y_7(self) -> Self
source§fn border_y_8(self) -> Self
fn border_y_8(self) -> Self
source§fn border_y_9(self) -> Self
fn border_y_9(self) -> Self
source§fn border_y_10(self) -> Self
fn border_y_10(self) -> Self
source§fn border_y_11(self) -> Self
fn border_y_11(self) -> Self
source§fn border_y_12(self) -> Self
fn border_y_12(self) -> Self
source§fn border_y_16(self) -> Self
fn border_y_16(self) -> Self
source§fn border_y_20(self) -> Self
fn border_y_20(self) -> Self
source§fn border_y_24(self) -> Self
fn border_y_24(self) -> Self
source§fn border_y_32(self) -> Self
fn border_y_32(self) -> Self
fn z_index(self, z_index: u32) -> Self
fn cursor(self, cursor: CursorStyle) -> Self
source§fn cursor_default(self) -> Self
fn cursor_default(self) -> Self
Sets the cursor style when hovering an element to
default
.
Docssource§fn cursor_pointer(self) -> Self
fn cursor_pointer(self) -> Self
Sets the cursor style when hovering an element to
pointer
.
Docssource§fn flex_1(self) -> Self
fn flex_1(self) -> Self
Sets the element to allow a flex item to grow and shrink as needed, ignoring its initial size.
Docs
source§fn flex_auto(self) -> Self
fn flex_auto(self) -> Self
Sets the element to allow a flex item to grow and shrink, taking into account its initial size.
Docs
source§fn flex_initial(self) -> Self
fn flex_initial(self) -> Self
Sets the element to allow a flex item to shrink but not grow, taking into account its initial size.
Docs
source§fn flex_none(self) -> Self
fn flex_none(self) -> Self
Sets the element to prevent a flex item from growing or shrinking.
Docs
source§fn grow(self) -> Self
fn grow(self) -> Self
Sets the element to allow a flex item to grow to fill any available space.
Docs
source§fn items_start(self) -> Self
fn items_start(self) -> Self
Sets the element to align flex items to the start of the container’s cross axis.
Docs
source§fn items_end(self) -> Self
fn items_end(self) -> Self
Sets the element to align flex items to the end of the container’s cross axis.
Docs
source§fn items_center(self) -> Self
fn items_center(self) -> Self
Sets the element to align flex items along the center of the container’s cross axis.
Docs
source§fn justify_between(self) -> Self
fn justify_between(self) -> Self
Sets the element to justify flex items along the container’s main axis
such that there is an equal amount of space between each item.
Docs
source§fn justify_center(self) -> Self
fn justify_center(self) -> Self
Sets the element to justify flex items along the center of the container’s main axis.
Docs
source§fn justify_start(self) -> Self
fn justify_start(self) -> Self
Sets the element to justify flex items against the start of the container’s main axis.
Docs
source§fn justify_end(self) -> Self
fn justify_end(self) -> Self
Sets the element to justify flex items against the end of the container’s main axis.
Docs
source§fn justify_around(self) -> Self
fn justify_around(self) -> Self
Sets the element to justify items along the container’s main axis such
that there is an equal amount of space on each side of each item.
Docs
source§fn bg<F>(self, fill: F) -> Selfwhere
F: Into<Fill>,
Self: Sized,
fn bg<F>(self, fill: F) -> Selfwhere F: Into<Fill>, Self: Sized,
Sets the background color of the element.
source§fn border_color<C>(self, border_color: C) -> Selfwhere
C: Into<Hsla>,
Self: Sized,
fn border_color<C>(self, border_color: C) -> Selfwhere C: Into<Hsla>, Self: Sized,
Sets the border color of the element.
source§fn shadow(self, shadows: SmallVec<[BoxShadow; 2]>) -> Self
fn shadow(self, shadows: SmallVec<[BoxShadow; 2]>) -> Self
Sets the box shadow of the element.
Docs
source§fn shadow_none(self) -> Self
fn shadow_none(self) -> Self
Clears the box shadow of the element.
Docs
source§fn shadow_2xl(self) -> Self
fn shadow_2xl(self) -> Self
Sets the box shadow of the element.
Docs
fn text_style(&mut self) -> &mut Option<TextStyleRefinement>
fn text_color(self, color: impl Into<Hsla>) -> Self
fn text_size(self, size: impl Into<AbsoluteLength>) -> Self
fn text_xs(self) -> Self
fn text_sm(self) -> Self
fn text_base(self) -> Self
fn text_lg(self) -> Self
fn text_xl(self) -> Self
fn text_2xl(self) -> Self
fn text_3xl(self) -> Self
fn text_decoration_none(self) -> Self
fn text_decoration_color(self, color: impl Into<Hsla>) -> Self
fn text_decoration_solid(self) -> Self
fn text_decoration_wavy(self) -> Self
fn text_decoration_0(self) -> Self
fn text_decoration_1(self) -> Self
fn text_decoration_2(self) -> Self
fn text_decoration_4(self) -> Self
fn text_decoration_8(self) -> Self
fn font(self, family_name: impl Into<SharedString>) -> Self
fn line_height(self, line_height: impl Into<DefiniteLength>) -> Self
Auto Trait Implementations§
impl<E> RefUnwindSafe for Focusable<E>where E: RefUnwindSafe,
impl<E> Send for Focusable<E>where E: Send,
impl<E> Sync for Focusable<E>where E: Sync,
impl<E> Unpin for Focusable<E>where E: Unpin,
impl<E> UnwindSafe for Focusable<E>where E: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more