pub struct Div { /* private fields */ }Expand description
A Div element, the all-in-one element for building complex UIs in GPUI
Implementations§
Source§impl Div
impl Div
Sourcepub fn on_children_prepainted(
self,
listener: impl Fn(Vec<Bounds<Pixels>>, &mut Window, &mut App) + 'static,
) -> Self
pub fn on_children_prepainted( self, listener: impl Fn(Vec<Bounds<Pixels>>, &mut Window, &mut App) + 'static, ) -> Self
Add a listener to be called when the children of this Div are prepainted.
This allows you to store the Bounds of the children for later use.
Sourcepub fn image_cache(self, cache: impl ImageCacheProvider) -> Self
pub fn image_cache(self, cache: impl ImageCacheProvider) -> Self
Add an image cache at the location of this div in the element tree.
Sourcepub fn with_dynamic_prepaint_order(
self,
order_fn: impl Fn(&mut Window, &mut App) -> SmallVec<[usize; 8]> + 'static,
) -> Self
pub fn with_dynamic_prepaint_order( self, order_fn: impl Fn(&mut Window, &mut App) -> SmallVec<[usize; 8]> + 'static, ) -> Self
Specify a function that determines the order in which children are prepainted.
The function is called at prepaint time and should return a vector of child indices in the desired prepaint order. Each index should appear exactly once.
This is useful when the prepaint of one child affects state that another child reads. For example, in split editor views, the editor with an autoscroll request should be prepainted first so its scroll position update is visible to the other editor.
Trait Implementations§
Source§impl Element for Div
impl Element for Div
Source§type RequestLayoutState = DivFrameState
type RequestLayoutState = DivFrameState
Element::request_layout. A mutable reference to this state is subsequently
provided to Element::prepaint and Element::paint.Source§type PrepaintState = Option<Hitbox>
type PrepaintState = Option<Hitbox>
Element::prepaint. A mutable reference to this state is subsequently
provided to Element::paint.Source§fn id(&self) -> Option<ElementId>
fn id(&self) -> Option<ElementId>
Source§fn source_location(&self) -> Option<&'static Location<'static>>
fn source_location(&self) -> Option<&'static Location<'static>>
Source§fn request_layout(
&mut self,
global_id: Option<&GlobalElementId>,
inspector_id: Option<&InspectorElementId>,
window: &mut Window,
cx: &mut App,
) -> (LayoutId, Self::RequestLayoutState)
fn request_layout( &mut self, global_id: Option<&GlobalElementId>, inspector_id: Option<&InspectorElementId>, window: &mut Window, cx: &mut App, ) -> (LayoutId, Self::RequestLayoutState)
Source§fn prepaint(
&mut self,
global_id: Option<&GlobalElementId>,
inspector_id: Option<&InspectorElementId>,
bounds: Bounds<Pixels>,
request_layout: &mut Self::RequestLayoutState,
window: &mut Window,
cx: &mut App,
) -> Option<Hitbox>
fn prepaint( &mut self, global_id: Option<&GlobalElementId>, inspector_id: Option<&InspectorElementId>, bounds: Bounds<Pixels>, request_layout: &mut Self::RequestLayoutState, window: &mut Window, cx: &mut App, ) -> Option<Hitbox>
Element::request_layout().Source§fn paint(
&mut self,
global_id: Option<&GlobalElementId>,
inspector_id: Option<&InspectorElementId>,
bounds: Bounds<Pixels>,
_request_layout: &mut Self::RequestLayoutState,
hitbox: &mut Option<Hitbox>,
window: &mut Window,
cx: &mut App,
)
fn paint( &mut self, global_id: Option<&GlobalElementId>, inspector_id: Option<&InspectorElementId>, bounds: Bounds<Pixels>, _request_layout: &mut Self::RequestLayoutState, hitbox: &mut Option<Hitbox>, window: &mut Window, cx: &mut App, )
Element::request_layout().Source§fn into_any(self) -> AnyElement
fn into_any(self) -> AnyElement
AnyElement.Source§impl InteractiveElement for Div
impl InteractiveElement for Div
Source§fn interactivity(&mut self) -> &mut Interactivity
fn interactivity(&mut self) -> &mut Interactivity
Source§fn group(self, group: impl Into<SharedString>) -> Self
fn group(self, group: impl Into<SharedString>) -> Self
Source§fn id(self, id: impl Into<ElementId>) -> Stateful<Self>
fn id(self, id: impl Into<ElementId>) -> Stateful<Self>
Source§fn track_focus(self, focus_handle: &FocusHandle) -> Self
fn track_focus(self, focus_handle: &FocusHandle) -> Self
Source§fn tab_index(self, index: isize) -> Self
fn tab_index(self, index: isize) -> Self
Self::tab_stop for more information.
This should only be used in conjunction with tab_group
in order to not interfere with the tab index of other elements.Source§fn tab_group(self) -> Self
fn tab_group(self) -> Self
Source§fn key_context<C, E>(self, key_context: C) -> Self
fn key_context<C, E>(self, key_context: C) -> Self
Source§fn hover(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Self
fn hover(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Self
Source§fn group_hover(
self,
group_name: impl Into<SharedString>,
f: impl FnOnce(StyleRefinement) -> StyleRefinement,
) -> Self
fn group_hover( self, group_name: impl Into<SharedString>, f: impl FnOnce(StyleRefinement) -> StyleRefinement, ) -> Self
Source§fn on_mouse_down(
self,
button: MouseButton,
listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_mouse_down( self, button: MouseButton, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_mouse_down. Read moreSource§fn debug_selector(self, _: impl FnOnce() -> String) -> Self
fn debug_selector(self, _: impl FnOnce() -> String) -> Self
crate::VisualTestContext::debug_bounds] map
This is a noop in release buildsSource§fn capture_any_mouse_down(
self,
listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static,
) -> Self
fn capture_any_mouse_down( self, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::capture_any_mouse_down. Read moreSource§fn on_any_mouse_down(
self,
listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_any_mouse_down( self, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_any_mouse_down. Read moreSource§fn on_mouse_up(
self,
button: MouseButton,
listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_mouse_up( self, button: MouseButton, listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_mouse_up. Read moreSource§fn capture_any_mouse_up(
self,
listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static,
) -> Self
fn capture_any_mouse_up( self, listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::capture_any_mouse_up. Read moreSource§fn on_mouse_pressure(
self,
listener: impl Fn(&MousePressureEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_mouse_pressure( self, listener: impl Fn(&MousePressureEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_mouse_pressure Read moreSource§fn capture_mouse_pressure(
self,
listener: impl Fn(&MousePressureEvent, &mut Window, &mut App) + 'static,
) -> Self
fn capture_mouse_pressure( self, listener: impl Fn(&MousePressureEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_mouse_pressure Read moreSource§fn on_mouse_down_out(
self,
listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_mouse_down_out( self, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_mouse_down_out. Read moreSource§fn on_mouse_up_out(
self,
button: MouseButton,
listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_mouse_up_out( self, button: MouseButton, listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_mouse_up_out. Read moreSource§fn on_mouse_move(
self,
listener: impl Fn(&MouseMoveEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_mouse_move( self, listener: impl Fn(&MouseMoveEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_mouse_move. Read moreSource§fn on_drag_move<T: 'static>(
self,
listener: impl Fn(&DragMoveEvent<T>, &mut Window, &mut App) + 'static,
) -> Self
fn on_drag_move<T: 'static>( self, listener: impl Fn(&DragMoveEvent<T>, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_drag_move. Read moreSource§fn on_scroll_wheel(
self,
listener: impl Fn(&ScrollWheelEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_scroll_wheel( self, listener: impl Fn(&ScrollWheelEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_scroll_wheel. Read moreSource§fn on_pinch(
self,
listener: impl Fn(&PinchEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_pinch( self, listener: impl Fn(&PinchEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_pinch. Read moreSource§fn capture_pinch(
self,
listener: impl Fn(&PinchEvent, &mut Window, &mut App) + 'static,
) -> Self
fn capture_pinch( self, listener: impl Fn(&PinchEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::capture_pinch. Read moreSource§fn capture_action<A: Action>(
self,
listener: impl Fn(&A, &mut Window, &mut App) + 'static,
) -> Self
fn capture_action<A: Action>( self, listener: impl Fn(&A, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::capture_action. Read moreSource§fn on_action<A: Action>(
self,
listener: impl Fn(&A, &mut Window, &mut App) + 'static,
) -> Self
fn on_action<A: Action>( self, listener: impl Fn(&A, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_action. Read moreSource§fn on_boxed_action(
self,
action: &dyn Action,
listener: impl Fn(&dyn Action, &mut Window, &mut App) + 'static,
) -> Self
fn on_boxed_action( self, action: &dyn Action, listener: impl Fn(&dyn Action, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_boxed_action. Read moreSource§fn on_key_down(
self,
listener: impl Fn(&KeyDownEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_key_down( self, listener: impl Fn(&KeyDownEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_key_down. Read moreSource§fn capture_key_down(
self,
listener: impl Fn(&KeyDownEvent, &mut Window, &mut App) + 'static,
) -> Self
fn capture_key_down( self, listener: impl Fn(&KeyDownEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::capture_key_down. Read moreSource§fn on_key_up(
self,
listener: impl Fn(&KeyUpEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_key_up( self, listener: impl Fn(&KeyUpEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_key_up. Read moreSource§fn capture_key_up(
self,
listener: impl Fn(&KeyUpEvent, &mut Window, &mut App) + 'static,
) -> Self
fn capture_key_up( self, listener: impl Fn(&KeyUpEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::capture_key_up. Read moreSource§fn on_modifiers_changed(
self,
listener: impl Fn(&ModifiersChangedEvent, &mut Window, &mut App) + 'static,
) -> Self
fn on_modifiers_changed( self, listener: impl Fn(&ModifiersChangedEvent, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_modifiers_changed. Read moreSource§fn drag_over<S: 'static>(
self,
f: impl 'static + Fn(StyleRefinement, &S, &mut Window, &mut App) -> StyleRefinement,
) -> Self
fn drag_over<S: 'static>( self, f: impl 'static + Fn(StyleRefinement, &S, &mut Window, &mut App) -> StyleRefinement, ) -> Self
Source§fn group_drag_over<S: 'static>(
self,
group_name: impl Into<SharedString>,
f: impl FnOnce(StyleRefinement) -> StyleRefinement,
) -> Self
fn group_drag_over<S: 'static>( self, group_name: impl Into<SharedString>, f: impl FnOnce(StyleRefinement) -> StyleRefinement, ) -> Self
Source§fn on_drop<T: 'static>(
self,
listener: impl Fn(&T, &mut Window, &mut App) + 'static,
) -> Self
fn on_drop<T: 'static>( self, listener: impl Fn(&T, &mut Window, &mut App) + 'static, ) -> Self
Interactivity::on_drop. Read moreSource§fn can_drop(
self,
predicate: impl Fn(&dyn Any, &mut Window, &mut App) -> bool + 'static,
) -> Self
fn can_drop( self, predicate: impl Fn(&dyn Any, &mut Window, &mut App) -> bool + 'static, ) -> Self
Interactivity::can_drop.Source§fn occlude(self) -> Self
fn occlude(self) -> Self
block_mouse_except_scroll should be preferred.
The fluent API equivalent to Interactivity::occlude_mouse.Source§fn window_control_area(self, area: WindowControlArea) -> Self
fn window_control_area(self, area: WindowControlArea) -> Self
Interactivity::window_control_area.Source§fn block_mouse_except_scroll(self) -> Self
fn block_mouse_except_scroll(self) -> Self
Interactivity::block_mouse_except_scroll. Read moreSource§fn focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Selfwhere
Self: Sized,
fn focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Selfwhere
Self: Sized,
InteractiveElement::track_focus.Source§fn in_focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Selfwhere
Self: Sized,
fn in_focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Selfwhere
Self: Sized,
InteractiveElement::track_focus.Source§fn focus_visible(
self,
f: impl FnOnce(StyleRefinement) -> StyleRefinement,
) -> Selfwhere
Self: Sized,
fn focus_visible(
self,
f: impl FnOnce(StyleRefinement) -> StyleRefinement,
) -> Selfwhere
Self: Sized,
:focus-visible pseudo-class - it only applies when the element
is focused AND the user is navigating via keyboard (not mouse clicks).
Requires that the element is focusable. Elements can be made focusable using InteractiveElement::track_focus.Source§impl IntoElement for Div
impl IntoElement for Div
Source§type Element = Div
type Element = Div
Source§fn into_element(self) -> Self::Element
fn into_element(self) -> Self::Element
Element.Source§fn into_any_element(self) -> AnyElement
fn into_any_element(self) -> AnyElement
AnyElement.Source§impl ParentElement for Div
impl ParentElement for Div
Source§fn extend(&mut self, elements: impl IntoIterator<Item = AnyElement>)
fn extend(&mut self, elements: impl IntoIterator<Item = AnyElement>)
Source§fn child(self, child: impl IntoElement) -> Selfwhere
Self: Sized,
fn child(self, child: impl IntoElement) -> Selfwhere
Self: Sized,
Source§fn children(self, children: impl IntoIterator<Item = impl IntoElement>) -> Selfwhere
Self: Sized,
fn children(self, children: impl IntoIterator<Item = impl IntoElement>) -> Selfwhere
Self: Sized,
Source§impl Styled for Div
impl Styled for Div
Source§fn style(&mut self) -> &mut StyleRefinement
fn style(&mut self) -> &mut StyleRefinement
Source§fn w_neg_full(self) -> Self
fn w_neg_full(self) -> Self
Source§fn w_neg_1_12(self) -> Self
fn w_neg_1_12(self) -> Self
Source§fn h_neg_full(self) -> Self
fn h_neg_full(self) -> Self
Source§fn h_neg_1_12(self) -> Self
fn h_neg_1_12(self) -> Self
Source§fn size(self, length: impl Clone + Into<Length>) -> Self
fn size(self, length: impl Clone + Into<Length>) -> Self
Source§fn size_neg_0(self) -> Self
fn size_neg_0(self) -> Self
Source§fn size_neg_0p5(self) -> Self
fn size_neg_0p5(self) -> Self
Source§fn size_neg_1(self) -> Self
fn size_neg_1(self) -> Self
Source§fn size_neg_1p5(self) -> Self
fn size_neg_1p5(self) -> Self
Source§fn size_neg_2(self) -> Self
fn size_neg_2(self) -> Self
Source§fn size_neg_2p5(self) -> Self
fn size_neg_2p5(self) -> Self
Source§fn size_neg_3(self) -> Self
fn size_neg_3(self) -> Self
Source§fn size_neg_3p5(self) -> Self
fn size_neg_3p5(self) -> Self
Source§fn size_neg_4(self) -> Self
fn size_neg_4(self) -> Self
Source§fn size_neg_5(self) -> Self
fn size_neg_5(self) -> Self
Source§fn size_neg_6(self) -> Self
fn size_neg_6(self) -> Self
Source§fn size_neg_7(self) -> Self
fn size_neg_7(self) -> Self
Source§fn size_neg_8(self) -> Self
fn size_neg_8(self) -> Self
Source§fn size_neg_9(self) -> Self
fn size_neg_9(self) -> Self
Source§fn size_neg_10(self) -> Self
fn size_neg_10(self) -> Self
Source§fn size_neg_11(self) -> Self
fn size_neg_11(self) -> Self
Source§fn size_neg_12(self) -> Self
fn size_neg_12(self) -> Self
Source§fn size_neg_16(self) -> Self
fn size_neg_16(self) -> Self
Source§fn size_neg_20(self) -> Self
fn size_neg_20(self) -> Self
Source§fn size_neg_24(self) -> Self
fn size_neg_24(self) -> Self
Source§fn size_neg_32(self) -> Self
fn size_neg_32(self) -> Self
Source§fn size_neg_40(self) -> Self
fn size_neg_40(self) -> Self
Source§fn size_neg_48(self) -> Self
fn size_neg_48(self) -> Self
Source§fn size_neg_56(self) -> Self
fn size_neg_56(self) -> Self
Source§fn size_neg_64(self) -> Self
fn size_neg_64(self) -> Self
Source§fn size_neg_72(self) -> Self
fn size_neg_72(self) -> Self
Source§fn size_neg_80(self) -> Self
fn size_neg_80(self) -> Self
Source§fn size_neg_96(self) -> Self
fn size_neg_96(self) -> Self
Source§fn size_neg_112(self) -> Self
fn size_neg_112(self) -> Self
Source§fn size_neg_128(self) -> Self
fn size_neg_128(self) -> Self
Source§fn size_neg_px(self) -> Self
fn size_neg_px(self) -> Self
Source§fn size_neg_full(self) -> Self
fn size_neg_full(self) -> Self
Source§fn size_neg_1_2(self) -> Self
fn size_neg_1_2(self) -> Self
Source§fn size_neg_1_3(self) -> Self
fn size_neg_1_3(self) -> Self
Source§fn size_neg_2_3(self) -> Self
fn size_neg_2_3(self) -> Self
Source§fn size_neg_1_4(self) -> Self
fn size_neg_1_4(self) -> Self
Source§fn size_neg_2_4(self) -> Self
fn size_neg_2_4(self) -> Self
Source§fn size_neg_3_4(self) -> Self
fn size_neg_3_4(self) -> Self
Source§fn size_neg_1_5(self) -> Self
fn size_neg_1_5(self) -> Self
Source§fn size_neg_2_5(self) -> Self
fn size_neg_2_5(self) -> Self
Source§fn size_neg_3_5(self) -> Self
fn size_neg_3_5(self) -> Self
Source§fn size_neg_4_5(self) -> Self
fn size_neg_4_5(self) -> Self
Source§fn size_neg_1_6(self) -> Self
fn size_neg_1_6(self) -> Self
Source§fn size_neg_5_6(self) -> Self
fn size_neg_5_6(self) -> Self
Source§fn size_neg_1_12(self) -> Self
fn size_neg_1_12(self) -> Self
Source§fn min_size(self, length: impl Clone + Into<Length>) -> Self
fn min_size(self, length: impl Clone + Into<Length>) -> Self
Source§fn min_size_0(self) -> Self
fn min_size_0(self) -> Self
Source§fn min_size_neg_0(self) -> Self
fn min_size_neg_0(self) -> Self
Source§fn min_size_0p5(self) -> Self
fn min_size_0p5(self) -> Self
Source§fn min_size_neg_0p5(self) -> Self
fn min_size_neg_0p5(self) -> Self
Source§fn min_size_1(self) -> Self
fn min_size_1(self) -> Self
Source§fn min_size_neg_1(self) -> Self
fn min_size_neg_1(self) -> Self
Source§fn min_size_1p5(self) -> Self
fn min_size_1p5(self) -> Self
Source§fn min_size_neg_1p5(self) -> Self
fn min_size_neg_1p5(self) -> Self
Source§fn min_size_2(self) -> Self
fn min_size_2(self) -> Self
Source§fn min_size_neg_2(self) -> Self
fn min_size_neg_2(self) -> Self
Source§fn min_size_2p5(self) -> Self
fn min_size_2p5(self) -> Self
Source§fn min_size_neg_2p5(self) -> Self
fn min_size_neg_2p5(self) -> Self
Source§fn min_size_3(self) -> Self
fn min_size_3(self) -> Self
Source§fn min_size_neg_3(self) -> Self
fn min_size_neg_3(self) -> Self
Source§fn min_size_3p5(self) -> Self
fn min_size_3p5(self) -> Self
Source§fn min_size_neg_3p5(self) -> Self
fn min_size_neg_3p5(self) -> Self
Source§fn min_size_4(self) -> Self
fn min_size_4(self) -> Self
Source§fn min_size_neg_4(self) -> Self
fn min_size_neg_4(self) -> Self
Source§fn min_size_5(self) -> Self
fn min_size_5(self) -> Self
Source§fn min_size_neg_5(self) -> Self
fn min_size_neg_5(self) -> Self
Source§fn min_size_6(self) -> Self
fn min_size_6(self) -> Self
Source§fn min_size_neg_6(self) -> Self
fn min_size_neg_6(self) -> Self
Source§fn min_size_7(self) -> Self
fn min_size_7(self) -> Self
Source§fn min_size_neg_7(self) -> Self
fn min_size_neg_7(self) -> Self
Source§fn min_size_8(self) -> Self
fn min_size_8(self) -> Self
Source§fn min_size_neg_8(self) -> Self
fn min_size_neg_8(self) -> Self
Source§fn min_size_9(self) -> Self
fn min_size_9(self) -> Self
Source§fn min_size_neg_9(self) -> Self
fn min_size_neg_9(self) -> Self
Source§fn min_size_10(self) -> Self
fn min_size_10(self) -> Self
Source§fn min_size_neg_10(self) -> Self
fn min_size_neg_10(self) -> Self
Source§fn min_size_11(self) -> Self
fn min_size_11(self) -> Self
Source§fn min_size_neg_11(self) -> Self
fn min_size_neg_11(self) -> Self
Source§fn min_size_12(self) -> Self
fn min_size_12(self) -> Self
Source§fn min_size_neg_12(self) -> Self
fn min_size_neg_12(self) -> Self
Source§fn min_size_16(self) -> Self
fn min_size_16(self) -> Self
Source§fn min_size_neg_16(self) -> Self
fn min_size_neg_16(self) -> Self
Source§fn min_size_20(self) -> Self
fn min_size_20(self) -> Self
Source§fn min_size_neg_20(self) -> Self
fn min_size_neg_20(self) -> Self
Source§fn min_size_24(self) -> Self
fn min_size_24(self) -> Self
Source§fn min_size_neg_24(self) -> Self
fn min_size_neg_24(self) -> Self
Source§fn min_size_32(self) -> Self
fn min_size_32(self) -> Self
Source§fn min_size_neg_32(self) -> Self
fn min_size_neg_32(self) -> Self
Source§fn min_size_40(self) -> Self
fn min_size_40(self) -> Self
Source§fn min_size_neg_40(self) -> Self
fn min_size_neg_40(self) -> Self
Source§fn min_size_48(self) -> Self
fn min_size_48(self) -> Self
Source§fn min_size_neg_48(self) -> Self
fn min_size_neg_48(self) -> Self
Source§fn min_size_56(self) -> Self
fn min_size_56(self) -> Self
Source§fn min_size_neg_56(self) -> Self
fn min_size_neg_56(self) -> Self
Source§fn min_size_64(self) -> Self
fn min_size_64(self) -> Self
Source§fn min_size_neg_64(self) -> Self
fn min_size_neg_64(self) -> Self
Source§fn min_size_72(self) -> Self
fn min_size_72(self) -> Self
Source§fn min_size_neg_72(self) -> Self
fn min_size_neg_72(self) -> Self
Source§fn min_size_80(self) -> Self
fn min_size_80(self) -> Self
Source§fn min_size_neg_80(self) -> Self
fn min_size_neg_80(self) -> Self
Source§fn min_size_96(self) -> Self
fn min_size_96(self) -> Self
Source§fn min_size_neg_96(self) -> Self
fn min_size_neg_96(self) -> Self
Source§fn min_size_112(self) -> Self
fn min_size_112(self) -> Self
Source§fn min_size_neg_112(self) -> Self
fn min_size_neg_112(self) -> Self
Source§fn min_size_128(self) -> Self
fn min_size_128(self) -> Self
Source§fn min_size_neg_128(self) -> Self
fn min_size_neg_128(self) -> Self
Source§fn min_size_auto(self) -> Self
fn min_size_auto(self) -> Self
Source§fn min_size_px(self) -> Self
fn min_size_px(self) -> Self
Source§fn min_size_neg_px(self) -> Self
fn min_size_neg_px(self) -> Self
Source§fn min_size_full(self) -> Self
fn min_size_full(self) -> Self
Source§fn min_size_neg_full(self) -> Self
fn min_size_neg_full(self) -> Self
Source§fn min_size_1_2(self) -> Self
fn min_size_1_2(self) -> Self
Source§fn min_size_neg_1_2(self) -> Self
fn min_size_neg_1_2(self) -> Self
Source§fn min_size_1_3(self) -> Self
fn min_size_1_3(self) -> Self
Source§fn min_size_neg_1_3(self) -> Self
fn min_size_neg_1_3(self) -> Self
Source§fn min_size_2_3(self) -> Self
fn min_size_2_3(self) -> Self
Source§fn min_size_neg_2_3(self) -> Self
fn min_size_neg_2_3(self) -> Self
Source§fn min_size_1_4(self) -> Self
fn min_size_1_4(self) -> Self
Source§fn min_size_neg_1_4(self) -> Self
fn min_size_neg_1_4(self) -> Self
Source§fn min_size_2_4(self) -> Self
fn min_size_2_4(self) -> Self
Source§fn min_size_neg_2_4(self) -> Self
fn min_size_neg_2_4(self) -> Self
Source§fn min_size_3_4(self) -> Self
fn min_size_3_4(self) -> Self
Source§fn min_size_neg_3_4(self) -> Self
fn min_size_neg_3_4(self) -> Self
Source§fn min_size_1_5(self) -> Self
fn min_size_1_5(self) -> Self
Source§fn min_size_neg_1_5(self) -> Self
fn min_size_neg_1_5(self) -> Self
Source§fn min_size_2_5(self) -> Self
fn min_size_2_5(self) -> Self
Source§fn min_size_neg_2_5(self) -> Self
fn min_size_neg_2_5(self) -> Self
Source§fn min_size_3_5(self) -> Self
fn min_size_3_5(self) -> Self
Source§fn min_size_neg_3_5(self) -> Self
fn min_size_neg_3_5(self) -> Self
Source§fn min_size_4_5(self) -> Self
fn min_size_4_5(self) -> Self
Source§fn min_size_neg_4_5(self) -> Self
fn min_size_neg_4_5(self) -> Self
Source§fn min_size_1_6(self) -> Self
fn min_size_1_6(self) -> Self
Source§fn min_size_neg_1_6(self) -> Self
fn min_size_neg_1_6(self) -> Self
Source§fn min_size_5_6(self) -> Self
fn min_size_5_6(self) -> Self
Source§fn min_size_neg_5_6(self) -> Self
fn min_size_neg_5_6(self) -> Self
Source§fn min_size_1_12(self) -> Self
fn min_size_1_12(self) -> Self
Source§fn min_size_neg_1_12(self) -> Self
fn min_size_neg_1_12(self) -> Self
Source§fn min_w(self, length: impl Clone + Into<Length>) -> Self
fn min_w(self, length: impl Clone + Into<Length>) -> Self
Source§fn min_w_neg_0(self) -> Self
fn min_w_neg_0(self) -> Self
Source§fn min_w_neg_0p5(self) -> Self
fn min_w_neg_0p5(self) -> Self
Source§fn min_w_neg_1(self) -> Self
fn min_w_neg_1(self) -> Self
Source§fn min_w_neg_1p5(self) -> Self
fn min_w_neg_1p5(self) -> Self
Source§fn min_w_neg_2(self) -> Self
fn min_w_neg_2(self) -> Self
Source§fn min_w_neg_2p5(self) -> Self
fn min_w_neg_2p5(self) -> Self
Source§fn min_w_neg_3(self) -> Self
fn min_w_neg_3(self) -> Self
Source§fn min_w_neg_3p5(self) -> Self
fn min_w_neg_3p5(self) -> Self
Source§fn min_w_neg_4(self) -> Self
fn min_w_neg_4(self) -> Self
Source§fn min_w_neg_5(self) -> Self
fn min_w_neg_5(self) -> Self
Source§fn min_w_neg_6(self) -> Self
fn min_w_neg_6(self) -> Self
Source§fn min_w_neg_7(self) -> Self
fn min_w_neg_7(self) -> Self
Source§fn min_w_neg_8(self) -> Self
fn min_w_neg_8(self) -> Self
Source§fn min_w_neg_9(self) -> Self
fn min_w_neg_9(self) -> Self
Source§fn min_w_neg_10(self) -> Self
fn min_w_neg_10(self) -> Self
Source§fn min_w_neg_11(self) -> Self
fn min_w_neg_11(self) -> Self
Source§fn min_w_neg_12(self) -> Self
fn min_w_neg_12(self) -> Self
Source§fn min_w_neg_16(self) -> Self
fn min_w_neg_16(self) -> Self
Source§fn min_w_neg_20(self) -> Self
fn min_w_neg_20(self) -> Self
Source§fn min_w_neg_24(self) -> Self
fn min_w_neg_24(self) -> Self
Source§fn min_w_neg_32(self) -> Self
fn min_w_neg_32(self) -> Self
Source§fn min_w_neg_40(self) -> Self
fn min_w_neg_40(self) -> Self
Source§fn min_w_neg_48(self) -> Self
fn min_w_neg_48(self) -> Self
Source§fn min_w_neg_56(self) -> Self
fn min_w_neg_56(self) -> Self
Source§fn min_w_neg_64(self) -> Self
fn min_w_neg_64(self) -> Self
Source§fn min_w_neg_72(self) -> Self
fn min_w_neg_72(self) -> Self
Source§fn min_w_neg_80(self) -> Self
fn min_w_neg_80(self) -> Self
Source§fn min_w_neg_96(self) -> Self
fn min_w_neg_96(self) -> Self
Source§fn min_w_neg_112(self) -> Self
fn min_w_neg_112(self) -> Self
Source§fn min_w_neg_128(self) -> Self
fn min_w_neg_128(self) -> Self
Source§fn min_w_auto(self) -> Self
fn min_w_auto(self) -> Self
Source§fn min_w_neg_px(self) -> Self
fn min_w_neg_px(self) -> Self
Source§fn min_w_full(self) -> Self
fn min_w_full(self) -> Self
Source§fn min_w_neg_full(self) -> Self
fn min_w_neg_full(self) -> Self
Source§fn min_w_neg_1_2(self) -> Self
fn min_w_neg_1_2(self) -> Self
Source§fn min_w_neg_1_3(self) -> Self
fn min_w_neg_1_3(self) -> Self
Source§fn min_w_neg_2_3(self) -> Self
fn min_w_neg_2_3(self) -> Self
Source§fn min_w_neg_1_4(self) -> Self
fn min_w_neg_1_4(self) -> Self
Source§fn min_w_neg_2_4(self) -> Self
fn min_w_neg_2_4(self) -> Self
Source§fn min_w_neg_3_4(self) -> Self
fn min_w_neg_3_4(self) -> Self
Source§fn min_w_neg_1_5(self) -> Self
fn min_w_neg_1_5(self) -> Self
Source§fn min_w_neg_2_5(self) -> Self
fn min_w_neg_2_5(self) -> Self
Source§fn min_w_neg_3_5(self) -> Self
fn min_w_neg_3_5(self) -> Self
Source§fn min_w_neg_4_5(self) -> Self
fn min_w_neg_4_5(self) -> Self
Source§fn min_w_neg_1_6(self) -> Self
fn min_w_neg_1_6(self) -> Self
Source§fn min_w_neg_5_6(self) -> Self
fn min_w_neg_5_6(self) -> Self
Source§fn min_w_1_12(self) -> Self
fn min_w_1_12(self) -> Self
Source§fn min_w_neg_1_12(self) -> Self
fn min_w_neg_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
Source§fn min_h_neg_0(self) -> Self
fn min_h_neg_0(self) -> Self
Source§fn min_h_neg_0p5(self) -> Self
fn min_h_neg_0p5(self) -> Self
Source§fn min_h_neg_1(self) -> Self
fn min_h_neg_1(self) -> Self
Source§fn min_h_neg_1p5(self) -> Self
fn min_h_neg_1p5(self) -> Self
Source§fn min_h_neg_2(self) -> Self
fn min_h_neg_2(self) -> Self
Source§fn min_h_neg_2p5(self) -> Self
fn min_h_neg_2p5(self) -> Self
Source§fn min_h_neg_3(self) -> Self
fn min_h_neg_3(self) -> Self
Source§fn min_h_neg_3p5(self) -> Self
fn min_h_neg_3p5(self) -> Self
Source§fn min_h_neg_4(self) -> Self
fn min_h_neg_4(self) -> Self
Source§fn min_h_neg_5(self) -> Self
fn min_h_neg_5(self) -> Self
Source§fn min_h_neg_6(self) -> Self
fn min_h_neg_6(self) -> Self
Source§fn min_h_neg_7(self) -> Self
fn min_h_neg_7(self) -> Self
Source§fn min_h_neg_8(self) -> Self
fn min_h_neg_8(self) -> Self
Source§fn min_h_neg_9(self) -> Self
fn min_h_neg_9(self) -> Self
Source§fn min_h_neg_10(self) -> Self
fn min_h_neg_10(self) -> Self
Source§fn min_h_neg_11(self) -> Self
fn min_h_neg_11(self) -> Self
Source§fn min_h_neg_12(self) -> Self
fn min_h_neg_12(self) -> Self
Source§fn min_h_neg_16(self) -> Self
fn min_h_neg_16(self) -> Self
Source§fn min_h_neg_20(self) -> Self
fn min_h_neg_20(self) -> Self
Source§fn min_h_neg_24(self) -> Self
fn min_h_neg_24(self) -> Self
Source§fn min_h_neg_32(self) -> Self
fn min_h_neg_32(self) -> Self
Source§fn min_h_neg_40(self) -> Self
fn min_h_neg_40(self) -> Self
Source§fn min_h_neg_48(self) -> Self
fn min_h_neg_48(self) -> Self
Source§fn min_h_neg_56(self) -> Self
fn min_h_neg_56(self) -> Self
Source§fn min_h_neg_64(self) -> Self
fn min_h_neg_64(self) -> Self
Source§fn min_h_neg_72(self) -> Self
fn min_h_neg_72(self) -> Self
Source§fn min_h_neg_80(self) -> Self
fn min_h_neg_80(self) -> Self
Source§fn min_h_neg_96(self) -> Self
fn min_h_neg_96(self) -> Self
Source§fn min_h_neg_112(self) -> Self
fn min_h_neg_112(self) -> Self
Source§fn min_h_neg_128(self) -> Self
fn min_h_neg_128(self) -> Self
Source§fn min_h_auto(self) -> Self
fn min_h_auto(self) -> Self
Source§fn min_h_neg_px(self) -> Self
fn min_h_neg_px(self) -> Self
Source§fn min_h_full(self) -> Self
fn min_h_full(self) -> Self
Source§fn min_h_neg_full(self) -> Self
fn min_h_neg_full(self) -> Self
Source§fn min_h_neg_1_2(self) -> Self
fn min_h_neg_1_2(self) -> Self
Source§fn min_h_neg_1_3(self) -> Self
fn min_h_neg_1_3(self) -> Self
Source§fn min_h_neg_2_3(self) -> Self
fn min_h_neg_2_3(self) -> Self
Source§fn min_h_neg_1_4(self) -> Self
fn min_h_neg_1_4(self) -> Self
Source§fn min_h_neg_2_4(self) -> Self
fn min_h_neg_2_4(self) -> Self
Source§fn min_h_neg_3_4(self) -> Self
fn min_h_neg_3_4(self) -> Self
Source§fn min_h_neg_1_5(self) -> Self
fn min_h_neg_1_5(self) -> Self
Source§fn min_h_neg_2_5(self) -> Self
fn min_h_neg_2_5(self) -> Self
Source§fn min_h_neg_3_5(self) -> Self
fn min_h_neg_3_5(self) -> Self
Source§fn min_h_neg_4_5(self) -> Self
fn min_h_neg_4_5(self) -> Self
Source§fn min_h_neg_1_6(self) -> Self
fn min_h_neg_1_6(self) -> Self
Source§fn min_h_neg_5_6(self) -> Self
fn min_h_neg_5_6(self) -> Self
Source§fn min_h_1_12(self) -> Self
fn min_h_1_12(self) -> Self
Source§fn min_h_neg_1_12(self) -> Self
fn min_h_neg_1_12(self) -> Self
Source§fn max_size(self, length: impl Clone + Into<Length>) -> Self
fn max_size(self, length: impl Clone + Into<Length>) -> Self
Source§fn max_size_0(self) -> Self
fn max_size_0(self) -> Self
Source§fn max_size_neg_0(self) -> Self
fn max_size_neg_0(self) -> Self
Source§fn max_size_0p5(self) -> Self
fn max_size_0p5(self) -> Self
Source§fn max_size_neg_0p5(self) -> Self
fn max_size_neg_0p5(self) -> Self
Source§fn max_size_1(self) -> Self
fn max_size_1(self) -> Self
Source§fn max_size_neg_1(self) -> Self
fn max_size_neg_1(self) -> Self
Source§fn max_size_1p5(self) -> Self
fn max_size_1p5(self) -> Self
Source§fn max_size_neg_1p5(self) -> Self
fn max_size_neg_1p5(self) -> Self
Source§fn max_size_2(self) -> Self
fn max_size_2(self) -> Self
Source§fn max_size_neg_2(self) -> Self
fn max_size_neg_2(self) -> Self
Source§fn max_size_2p5(self) -> Self
fn max_size_2p5(self) -> Self
Source§fn max_size_neg_2p5(self) -> Self
fn max_size_neg_2p5(self) -> Self
Source§fn max_size_3(self) -> Self
fn max_size_3(self) -> Self
Source§fn max_size_neg_3(self) -> Self
fn max_size_neg_3(self) -> Self
Source§fn max_size_3p5(self) -> Self
fn max_size_3p5(self) -> Self
Source§fn max_size_neg_3p5(self) -> Self
fn max_size_neg_3p5(self) -> Self
Source§fn max_size_4(self) -> Self
fn max_size_4(self) -> Self
Source§fn max_size_neg_4(self) -> Self
fn max_size_neg_4(self) -> Self
Source§fn max_size_5(self) -> Self
fn max_size_5(self) -> Self
Source§fn max_size_neg_5(self) -> Self
fn max_size_neg_5(self) -> Self
Source§fn max_size_6(self) -> Self
fn max_size_6(self) -> Self
Source§fn max_size_neg_6(self) -> Self
fn max_size_neg_6(self) -> Self
Source§fn max_size_7(self) -> Self
fn max_size_7(self) -> Self
Source§fn max_size_neg_7(self) -> Self
fn max_size_neg_7(self) -> Self
Source§fn max_size_8(self) -> Self
fn max_size_8(self) -> Self
Source§fn max_size_neg_8(self) -> Self
fn max_size_neg_8(self) -> Self
Source§fn max_size_9(self) -> Self
fn max_size_9(self) -> Self
Source§fn max_size_neg_9(self) -> Self
fn max_size_neg_9(self) -> Self
Source§fn max_size_10(self) -> Self
fn max_size_10(self) -> Self
Source§fn max_size_neg_10(self) -> Self
fn max_size_neg_10(self) -> Self
Source§fn max_size_11(self) -> Self
fn max_size_11(self) -> Self
Source§fn max_size_neg_11(self) -> Self
fn max_size_neg_11(self) -> Self
Source§fn max_size_12(self) -> Self
fn max_size_12(self) -> Self
Source§fn max_size_neg_12(self) -> Self
fn max_size_neg_12(self) -> Self
Source§fn max_size_16(self) -> Self
fn max_size_16(self) -> Self
Source§fn max_size_neg_16(self) -> Self
fn max_size_neg_16(self) -> Self
Source§fn max_size_20(self) -> Self
fn max_size_20(self) -> Self
Source§fn max_size_neg_20(self) -> Self
fn max_size_neg_20(self) -> Self
Source§fn max_size_24(self) -> Self
fn max_size_24(self) -> Self
Source§fn max_size_neg_24(self) -> Self
fn max_size_neg_24(self) -> Self
Source§fn max_size_32(self) -> Self
fn max_size_32(self) -> Self
Source§fn max_size_neg_32(self) -> Self
fn max_size_neg_32(self) -> Self
Source§fn max_size_40(self) -> Self
fn max_size_40(self) -> Self
Source§fn max_size_neg_40(self) -> Self
fn max_size_neg_40(self) -> Self
Source§fn max_size_48(self) -> Self
fn max_size_48(self) -> Self
Source§fn max_size_neg_48(self) -> Self
fn max_size_neg_48(self) -> Self
Source§fn max_size_56(self) -> Self
fn max_size_56(self) -> Self
Source§fn max_size_neg_56(self) -> Self
fn max_size_neg_56(self) -> Self
Source§fn max_size_64(self) -> Self
fn max_size_64(self) -> Self
Source§fn max_size_neg_64(self) -> Self
fn max_size_neg_64(self) -> Self
Source§fn max_size_72(self) -> Self
fn max_size_72(self) -> Self
Source§fn max_size_neg_72(self) -> Self
fn max_size_neg_72(self) -> Self
Source§fn max_size_80(self) -> Self
fn max_size_80(self) -> Self
Source§fn max_size_neg_80(self) -> Self
fn max_size_neg_80(self) -> Self
Source§fn max_size_96(self) -> Self
fn max_size_96(self) -> Self
Source§fn max_size_neg_96(self) -> Self
fn max_size_neg_96(self) -> Self
Source§fn max_size_112(self) -> Self
fn max_size_112(self) -> Self
Source§fn max_size_neg_112(self) -> Self
fn max_size_neg_112(self) -> Self
Source§fn max_size_128(self) -> Self
fn max_size_128(self) -> Self
Source§fn max_size_neg_128(self) -> Self
fn max_size_neg_128(self) -> Self
Source§fn max_size_auto(self) -> Self
fn max_size_auto(self) -> Self
Source§fn max_size_px(self) -> Self
fn max_size_px(self) -> Self
Source§fn max_size_neg_px(self) -> Self
fn max_size_neg_px(self) -> Self
Source§fn max_size_full(self) -> Self
fn max_size_full(self) -> Self
Source§fn max_size_neg_full(self) -> Self
fn max_size_neg_full(self) -> Self
Source§fn max_size_1_2(self) -> Self
fn max_size_1_2(self) -> Self
Source§fn max_size_neg_1_2(self) -> Self
fn max_size_neg_1_2(self) -> Self
Source§fn max_size_1_3(self) -> Self
fn max_size_1_3(self) -> Self
Source§fn max_size_neg_1_3(self) -> Self
fn max_size_neg_1_3(self) -> Self
Source§fn max_size_2_3(self) -> Self
fn max_size_2_3(self) -> Self
Source§fn max_size_neg_2_3(self) -> Self
fn max_size_neg_2_3(self) -> Self
Source§fn max_size_1_4(self) -> Self
fn max_size_1_4(self) -> Self
Source§fn max_size_neg_1_4(self) -> Self
fn max_size_neg_1_4(self) -> Self
Source§fn max_size_2_4(self) -> Self
fn max_size_2_4(self) -> Self
Source§fn max_size_neg_2_4(self) -> Self
fn max_size_neg_2_4(self) -> Self
Source§fn max_size_3_4(self) -> Self
fn max_size_3_4(self) -> Self
Source§fn max_size_neg_3_4(self) -> Self
fn max_size_neg_3_4(self) -> Self
Source§fn max_size_1_5(self) -> Self
fn max_size_1_5(self) -> Self
Source§fn max_size_neg_1_5(self) -> Self
fn max_size_neg_1_5(self) -> Self
Source§fn max_size_2_5(self) -> Self
fn max_size_2_5(self) -> Self
Source§fn max_size_neg_2_5(self) -> Self
fn max_size_neg_2_5(self) -> Self
Source§fn max_size_3_5(self) -> Self
fn max_size_3_5(self) -> Self
Source§fn max_size_neg_3_5(self) -> Self
fn max_size_neg_3_5(self) -> Self
Source§fn max_size_4_5(self) -> Self
fn max_size_4_5(self) -> Self
Source§fn max_size_neg_4_5(self) -> Self
fn max_size_neg_4_5(self) -> Self
Source§fn max_size_1_6(self) -> Self
fn max_size_1_6(self) -> Self
Source§fn max_size_neg_1_6(self) -> Self
fn max_size_neg_1_6(self) -> Self
Source§fn max_size_5_6(self) -> Self
fn max_size_5_6(self) -> Self
Source§fn max_size_neg_5_6(self) -> Self
fn max_size_neg_5_6(self) -> Self
Source§fn max_size_1_12(self) -> Self
fn max_size_1_12(self) -> Self
Source§fn max_size_neg_1_12(self) -> Self
fn max_size_neg_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
Source§fn max_w_neg_0(self) -> Self
fn max_w_neg_0(self) -> Self
Source§fn max_w_neg_0p5(self) -> Self
fn max_w_neg_0p5(self) -> Self
Source§fn max_w_neg_1(self) -> Self
fn max_w_neg_1(self) -> Self
Source§fn max_w_neg_1p5(self) -> Self
fn max_w_neg_1p5(self) -> Self
Source§fn max_w_neg_2(self) -> Self
fn max_w_neg_2(self) -> Self
Source§fn max_w_neg_2p5(self) -> Self
fn max_w_neg_2p5(self) -> Self
Source§fn max_w_neg_3(self) -> Self
fn max_w_neg_3(self) -> Self
Source§fn max_w_neg_3p5(self) -> Self
fn max_w_neg_3p5(self) -> Self
Source§fn max_w_neg_4(self) -> Self
fn max_w_neg_4(self) -> Self
Source§fn max_w_neg_5(self) -> Self
fn max_w_neg_5(self) -> Self
Source§fn max_w_neg_6(self) -> Self
fn max_w_neg_6(self) -> Self
Source§fn max_w_neg_7(self) -> Self
fn max_w_neg_7(self) -> Self
Source§fn max_w_neg_8(self) -> Self
fn max_w_neg_8(self) -> Self
Source§fn max_w_neg_9(self) -> Self
fn max_w_neg_9(self) -> Self
Source§fn max_w_neg_10(self) -> Self
fn max_w_neg_10(self) -> Self
Source§fn max_w_neg_11(self) -> Self
fn max_w_neg_11(self) -> Self
Source§fn max_w_neg_12(self) -> Self
fn max_w_neg_12(self) -> Self
Source§fn max_w_neg_16(self) -> Self
fn max_w_neg_16(self) -> Self
Source§fn max_w_neg_20(self) -> Self
fn max_w_neg_20(self) -> Self
Source§fn max_w_neg_24(self) -> Self
fn max_w_neg_24(self) -> Self
Source§fn max_w_neg_32(self) -> Self
fn max_w_neg_32(self) -> Self
Source§fn max_w_neg_40(self) -> Self
fn max_w_neg_40(self) -> Self
Source§fn max_w_neg_48(self) -> Self
fn max_w_neg_48(self) -> Self
Source§fn max_w_neg_56(self) -> Self
fn max_w_neg_56(self) -> Self
Source§fn max_w_neg_64(self) -> Self
fn max_w_neg_64(self) -> Self
Source§fn max_w_neg_72(self) -> Self
fn max_w_neg_72(self) -> Self
Source§fn max_w_neg_80(self) -> Self
fn max_w_neg_80(self) -> Self
Source§fn max_w_neg_96(self) -> Self
fn max_w_neg_96(self) -> Self
Source§fn max_w_neg_112(self) -> Self
fn max_w_neg_112(self) -> Self
Source§fn max_w_neg_128(self) -> Self
fn max_w_neg_128(self) -> Self
Source§fn max_w_auto(self) -> Self
fn max_w_auto(self) -> Self
Source§fn max_w_neg_px(self) -> Self
fn max_w_neg_px(self) -> Self
Source§fn max_w_full(self) -> Self
fn max_w_full(self) -> Self
Source§fn max_w_neg_full(self) -> Self
fn max_w_neg_full(self) -> Self
Source§fn max_w_neg_1_2(self) -> Self
fn max_w_neg_1_2(self) -> Self
Source§fn max_w_neg_1_3(self) -> Self
fn max_w_neg_1_3(self) -> Self
Source§fn max_w_neg_2_3(self) -> Self
fn max_w_neg_2_3(self) -> Self
Source§fn max_w_neg_1_4(self) -> Self
fn max_w_neg_1_4(self) -> Self
Source§fn max_w_neg_2_4(self) -> Self
fn max_w_neg_2_4(self) -> Self
Source§fn max_w_neg_3_4(self) -> Self
fn max_w_neg_3_4(self) -> Self
Source§fn max_w_neg_1_5(self) -> Self
fn max_w_neg_1_5(self) -> Self
Source§fn max_w_neg_2_5(self) -> Self
fn max_w_neg_2_5(self) -> Self
Source§fn max_w_neg_3_5(self) -> Self
fn max_w_neg_3_5(self) -> Self
Source§fn max_w_neg_4_5(self) -> Self
fn max_w_neg_4_5(self) -> Self
Source§fn max_w_neg_1_6(self) -> Self
fn max_w_neg_1_6(self) -> Self
Source§fn max_w_neg_5_6(self) -> Self
fn max_w_neg_5_6(self) -> Self
Source§fn max_w_1_12(self) -> Self
fn max_w_1_12(self) -> Self
Source§fn max_w_neg_1_12(self) -> Self
fn max_w_neg_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
Source§fn max_h_neg_0(self) -> Self
fn max_h_neg_0(self) -> Self
Source§fn max_h_neg_0p5(self) -> Self
fn max_h_neg_0p5(self) -> Self
Source§fn max_h_neg_1(self) -> Self
fn max_h_neg_1(self) -> Self
Source§fn max_h_neg_1p5(self) -> Self
fn max_h_neg_1p5(self) -> Self
Source§fn max_h_neg_2(self) -> Self
fn max_h_neg_2(self) -> Self
Source§fn max_h_neg_2p5(self) -> Self
fn max_h_neg_2p5(self) -> Self
Source§fn max_h_neg_3(self) -> Self
fn max_h_neg_3(self) -> Self
Source§fn max_h_neg_3p5(self) -> Self
fn max_h_neg_3p5(self) -> Self
Source§fn max_h_neg_4(self) -> Self
fn max_h_neg_4(self) -> Self
Source§fn max_h_neg_5(self) -> Self
fn max_h_neg_5(self) -> Self
Source§fn max_h_neg_6(self) -> Self
fn max_h_neg_6(self) -> Self
Source§fn max_h_neg_7(self) -> Self
fn max_h_neg_7(self) -> Self
Source§fn max_h_neg_8(self) -> Self
fn max_h_neg_8(self) -> Self
Source§fn max_h_neg_9(self) -> Self
fn max_h_neg_9(self) -> Self
Source§fn max_h_neg_10(self) -> Self
fn max_h_neg_10(self) -> Self
Source§fn max_h_neg_11(self) -> Self
fn max_h_neg_11(self) -> Self
Source§fn max_h_neg_12(self) -> Self
fn max_h_neg_12(self) -> Self
Source§fn max_h_neg_16(self) -> Self
fn max_h_neg_16(self) -> Self
Source§fn max_h_neg_20(self) -> Self
fn max_h_neg_20(self) -> Self
Source§fn max_h_neg_24(self) -> Self
fn max_h_neg_24(self) -> Self
Source§fn max_h_neg_32(self) -> Self
fn max_h_neg_32(self) -> Self
Source§fn max_h_neg_40(self) -> Self
fn max_h_neg_40(self) -> Self
Source§fn max_h_neg_48(self) -> Self
fn max_h_neg_48(self) -> Self
Source§fn max_h_neg_56(self) -> Self
fn max_h_neg_56(self) -> Self
Source§fn max_h_neg_64(self) -> Self
fn max_h_neg_64(self) -> Self
Source§fn max_h_neg_72(self) -> Self
fn max_h_neg_72(self) -> Self
Source§fn max_h_neg_80(self) -> Self
fn max_h_neg_80(self) -> Self
Source§fn max_h_neg_96(self) -> Self
fn max_h_neg_96(self) -> Self
Source§fn max_h_neg_112(self) -> Self
fn max_h_neg_112(self) -> Self
Source§fn max_h_neg_128(self) -> Self
fn max_h_neg_128(self) -> Self
Source§fn max_h_auto(self) -> Self
fn max_h_auto(self) -> Self
Source§fn max_h_neg_px(self) -> Self
fn max_h_neg_px(self) -> Self
Source§fn max_h_full(self) -> Self
fn max_h_full(self) -> Self
Source§fn max_h_neg_full(self) -> Self
fn max_h_neg_full(self) -> Self
Source§fn max_h_neg_1_2(self) -> Self
fn max_h_neg_1_2(self) -> Self
Source§fn max_h_neg_1_3(self) -> Self
fn max_h_neg_1_3(self) -> Self
Source§fn max_h_neg_2_3(self) -> Self
fn max_h_neg_2_3(self) -> Self
Source§fn max_h_neg_1_4(self) -> Self
fn max_h_neg_1_4(self) -> Self
Source§fn max_h_neg_2_4(self) -> Self
fn max_h_neg_2_4(self) -> Self
Source§fn max_h_neg_3_4(self) -> Self
fn max_h_neg_3_4(self) -> Self
Source§fn max_h_neg_1_5(self) -> Self
fn max_h_neg_1_5(self) -> Self
Source§fn max_h_neg_2_5(self) -> Self
fn max_h_neg_2_5(self) -> Self
Source§fn max_h_neg_3_5(self) -> Self
fn max_h_neg_3_5(self) -> Self
Source§fn max_h_neg_4_5(self) -> Self
fn max_h_neg_4_5(self) -> Self
Source§fn max_h_neg_1_6(self) -> Self
fn max_h_neg_1_6(self) -> Self
Source§fn max_h_neg_5_6(self) -> Self
fn max_h_neg_5_6(self) -> Self
Source§fn max_h_1_12(self) -> Self
fn max_h_1_12(self) -> Self
Source§fn max_h_neg_1_12(self) -> Self
fn max_h_neg_1_12(self) -> Self
Source§fn gap(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn gap(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn gap_neg_0p5(self) -> Self
fn gap_neg_0p5(self) -> Self
Source§fn gap_neg_1p5(self) -> Self
fn gap_neg_1p5(self) -> Self
Source§fn gap_neg_2p5(self) -> Self
fn gap_neg_2p5(self) -> Self
Source§fn gap_neg_3p5(self) -> Self
fn gap_neg_3p5(self) -> Self
Source§fn gap_neg_10(self) -> Self
fn gap_neg_10(self) -> Self
Source§fn gap_neg_11(self) -> Self
fn gap_neg_11(self) -> Self
Source§fn gap_neg_12(self) -> Self
fn gap_neg_12(self) -> Self
Source§fn gap_neg_16(self) -> Self
fn gap_neg_16(self) -> Self
Source§fn gap_neg_20(self) -> Self
fn gap_neg_20(self) -> Self
Source§fn gap_neg_24(self) -> Self
fn gap_neg_24(self) -> Self
Source§fn gap_neg_32(self) -> Self
fn gap_neg_32(self) -> Self
Source§fn gap_neg_40(self) -> Self
fn gap_neg_40(self) -> Self
Source§fn gap_neg_48(self) -> Self
fn gap_neg_48(self) -> Self
Source§fn gap_neg_56(self) -> Self
fn gap_neg_56(self) -> Self
Source§fn gap_neg_64(self) -> Self
fn gap_neg_64(self) -> Self
Source§fn gap_neg_72(self) -> Self
fn gap_neg_72(self) -> Self
Source§fn gap_neg_80(self) -> Self
fn gap_neg_80(self) -> Self
Source§fn gap_neg_96(self) -> Self
fn gap_neg_96(self) -> Self
Source§fn gap_neg_112(self) -> Self
fn gap_neg_112(self) -> Self
Source§fn gap_neg_128(self) -> Self
fn gap_neg_128(self) -> Self
Source§fn gap_neg_px(self) -> Self
fn gap_neg_px(self) -> Self
Source§fn gap_neg_full(self) -> Self
fn gap_neg_full(self) -> Self
Source§fn gap_neg_1_2(self) -> Self
fn gap_neg_1_2(self) -> Self
Source§fn gap_neg_1_3(self) -> Self
fn gap_neg_1_3(self) -> Self
Source§fn gap_neg_2_3(self) -> Self
fn gap_neg_2_3(self) -> Self
Source§fn gap_neg_1_4(self) -> Self
fn gap_neg_1_4(self) -> Self
Source§fn gap_neg_2_4(self) -> Self
fn gap_neg_2_4(self) -> Self
Source§fn gap_neg_3_4(self) -> Self
fn gap_neg_3_4(self) -> Self
Source§fn gap_neg_1_5(self) -> Self
fn gap_neg_1_5(self) -> Self
Source§fn gap_neg_2_5(self) -> Self
fn gap_neg_2_5(self) -> Self
Source§fn gap_neg_3_5(self) -> Self
fn gap_neg_3_5(self) -> Self
Source§fn gap_neg_4_5(self) -> Self
fn gap_neg_4_5(self) -> Self
Source§fn gap_neg_1_6(self) -> Self
fn gap_neg_1_6(self) -> Self
Source§fn gap_neg_5_6(self) -> Self
fn gap_neg_5_6(self) -> Self
Source§fn gap_neg_1_12(self) -> Self
fn gap_neg_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
Source§fn gap_x_neg_0(self) -> Self
fn gap_x_neg_0(self) -> Self
Source§fn gap_x_neg_0p5(self) -> Self
fn gap_x_neg_0p5(self) -> Self
Source§fn gap_x_neg_1(self) -> Self
fn gap_x_neg_1(self) -> Self
Source§fn gap_x_neg_1p5(self) -> Self
fn gap_x_neg_1p5(self) -> Self
Source§fn gap_x_neg_2(self) -> Self
fn gap_x_neg_2(self) -> Self
Source§fn gap_x_neg_2p5(self) -> Self
fn gap_x_neg_2p5(self) -> Self
Source§fn gap_x_neg_3(self) -> Self
fn gap_x_neg_3(self) -> Self
Source§fn gap_x_neg_3p5(self) -> Self
fn gap_x_neg_3p5(self) -> Self
Source§fn gap_x_neg_4(self) -> Self
fn gap_x_neg_4(self) -> Self
Source§fn gap_x_neg_5(self) -> Self
fn gap_x_neg_5(self) -> Self
Source§fn gap_x_neg_6(self) -> Self
fn gap_x_neg_6(self) -> Self
Source§fn gap_x_neg_7(self) -> Self
fn gap_x_neg_7(self) -> Self
Source§fn gap_x_neg_8(self) -> Self
fn gap_x_neg_8(self) -> Self
Source§fn gap_x_neg_9(self) -> Self
fn gap_x_neg_9(self) -> Self
Source§fn gap_x_neg_10(self) -> Self
fn gap_x_neg_10(self) -> Self
Source§fn gap_x_neg_11(self) -> Self
fn gap_x_neg_11(self) -> Self
Source§fn gap_x_neg_12(self) -> Self
fn gap_x_neg_12(self) -> Self
Source§fn gap_x_neg_16(self) -> Self
fn gap_x_neg_16(self) -> Self
Source§fn gap_x_neg_20(self) -> Self
fn gap_x_neg_20(self) -> Self
Source§fn gap_x_neg_24(self) -> Self
fn gap_x_neg_24(self) -> Self
Source§fn gap_x_neg_32(self) -> Self
fn gap_x_neg_32(self) -> Self
Source§fn gap_x_neg_40(self) -> Self
fn gap_x_neg_40(self) -> Self
Source§fn gap_x_neg_48(self) -> Self
fn gap_x_neg_48(self) -> Self
Source§fn gap_x_neg_56(self) -> Self
fn gap_x_neg_56(self) -> Self
Source§fn gap_x_neg_64(self) -> Self
fn gap_x_neg_64(self) -> Self
Source§fn gap_x_neg_72(self) -> Self
fn gap_x_neg_72(self) -> Self
Source§fn gap_x_neg_80(self) -> Self
fn gap_x_neg_80(self) -> Self
Source§fn gap_x_neg_96(self) -> Self
fn gap_x_neg_96(self) -> Self
Source§fn gap_x_neg_112(self) -> Self
fn gap_x_neg_112(self) -> Self
Source§fn gap_x_neg_128(self) -> Self
fn gap_x_neg_128(self) -> Self
Source§fn gap_x_neg_px(self) -> Self
fn gap_x_neg_px(self) -> Self
Source§fn gap_x_full(self) -> Self
fn gap_x_full(self) -> Self
Source§fn gap_x_neg_full(self) -> Self
fn gap_x_neg_full(self) -> Self
Source§fn gap_x_neg_1_2(self) -> Self
fn gap_x_neg_1_2(self) -> Self
Source§fn gap_x_neg_1_3(self) -> Self
fn gap_x_neg_1_3(self) -> Self
Source§fn gap_x_neg_2_3(self) -> Self
fn gap_x_neg_2_3(self) -> Self
Source§fn gap_x_neg_1_4(self) -> Self
fn gap_x_neg_1_4(self) -> Self
Source§fn gap_x_neg_2_4(self) -> Self
fn gap_x_neg_2_4(self) -> Self
Source§fn gap_x_neg_3_4(self) -> Self
fn gap_x_neg_3_4(self) -> Self
Source§fn gap_x_neg_1_5(self) -> Self
fn gap_x_neg_1_5(self) -> Self
Source§fn gap_x_neg_2_5(self) -> Self
fn gap_x_neg_2_5(self) -> Self
Source§fn gap_x_neg_3_5(self) -> Self
fn gap_x_neg_3_5(self) -> Self
Source§fn gap_x_neg_4_5(self) -> Self
fn gap_x_neg_4_5(self) -> Self
Source§fn gap_x_neg_1_6(self) -> Self
fn gap_x_neg_1_6(self) -> Self
Source§fn gap_x_neg_5_6(self) -> Self
fn gap_x_neg_5_6(self) -> Self
Source§fn gap_x_1_12(self) -> Self
fn gap_x_1_12(self) -> Self
Source§fn gap_x_neg_1_12(self) -> Self
fn gap_x_neg_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
Source§fn gap_y_neg_0(self) -> Self
fn gap_y_neg_0(self) -> Self
Source§fn gap_y_neg_0p5(self) -> Self
fn gap_y_neg_0p5(self) -> Self
Source§fn gap_y_neg_1(self) -> Self
fn gap_y_neg_1(self) -> Self
Source§fn gap_y_neg_1p5(self) -> Self
fn gap_y_neg_1p5(self) -> Self
Source§fn gap_y_neg_2(self) -> Self
fn gap_y_neg_2(self) -> Self
Source§fn gap_y_neg_2p5(self) -> Self
fn gap_y_neg_2p5(self) -> Self
Source§fn gap_y_neg_3(self) -> Self
fn gap_y_neg_3(self) -> Self
Source§fn gap_y_neg_3p5(self) -> Self
fn gap_y_neg_3p5(self) -> Self
Source§fn gap_y_neg_4(self) -> Self
fn gap_y_neg_4(self) -> Self
Source§fn gap_y_neg_5(self) -> Self
fn gap_y_neg_5(self) -> Self
Source§fn gap_y_neg_6(self) -> Self
fn gap_y_neg_6(self) -> Self
Source§fn gap_y_neg_7(self) -> Self
fn gap_y_neg_7(self) -> Self
Source§fn gap_y_neg_8(self) -> Self
fn gap_y_neg_8(self) -> Self
Source§fn gap_y_neg_9(self) -> Self
fn gap_y_neg_9(self) -> Self
Source§fn gap_y_neg_10(self) -> Self
fn gap_y_neg_10(self) -> Self
Source§fn gap_y_neg_11(self) -> Self
fn gap_y_neg_11(self) -> Self
Source§fn gap_y_neg_12(self) -> Self
fn gap_y_neg_12(self) -> Self
Source§fn gap_y_neg_16(self) -> Self
fn gap_y_neg_16(self) -> Self
Source§fn gap_y_neg_20(self) -> Self
fn gap_y_neg_20(self) -> Self
Source§fn gap_y_neg_24(self) -> Self
fn gap_y_neg_24(self) -> Self
Source§fn gap_y_neg_32(self) -> Self
fn gap_y_neg_32(self) -> Self
Source§fn gap_y_neg_40(self) -> Self
fn gap_y_neg_40(self) -> Self
Source§fn gap_y_neg_48(self) -> Self
fn gap_y_neg_48(self) -> Self
Source§fn gap_y_neg_56(self) -> Self
fn gap_y_neg_56(self) -> Self
Source§fn gap_y_neg_64(self) -> Self
fn gap_y_neg_64(self) -> Self
Source§fn gap_y_neg_72(self) -> Self
fn gap_y_neg_72(self) -> Self
Source§fn gap_y_neg_80(self) -> Self
fn gap_y_neg_80(self) -> Self
Source§fn gap_y_neg_96(self) -> Self
fn gap_y_neg_96(self) -> Self
Source§fn gap_y_neg_112(self) -> Self
fn gap_y_neg_112(self) -> Self
Source§fn gap_y_neg_128(self) -> Self
fn gap_y_neg_128(self) -> Self
Source§fn gap_y_neg_px(self) -> Self
fn gap_y_neg_px(self) -> Self
Source§fn gap_y_full(self) -> Self
fn gap_y_full(self) -> Self
Source§fn gap_y_neg_full(self) -> Self
fn gap_y_neg_full(self) -> Self
Source§fn gap_y_neg_1_2(self) -> Self
fn gap_y_neg_1_2(self) -> Self
Source§fn gap_y_neg_1_3(self) -> Self
fn gap_y_neg_1_3(self) -> Self
Source§fn gap_y_neg_2_3(self) -> Self
fn gap_y_neg_2_3(self) -> Self
Source§fn gap_y_neg_1_4(self) -> Self
fn gap_y_neg_1_4(self) -> Self
Source§fn gap_y_neg_2_4(self) -> Self
fn gap_y_neg_2_4(self) -> Self
Source§fn gap_y_neg_3_4(self) -> Self
fn gap_y_neg_3_4(self) -> Self
Source§fn gap_y_neg_1_5(self) -> Self
fn gap_y_neg_1_5(self) -> Self
Source§fn gap_y_neg_2_5(self) -> Self
fn gap_y_neg_2_5(self) -> Self
Source§fn gap_y_neg_3_5(self) -> Self
fn gap_y_neg_3_5(self) -> Self
Source§fn gap_y_neg_4_5(self) -> Self
fn gap_y_neg_4_5(self) -> Self
Source§fn gap_y_neg_1_6(self) -> Self
fn gap_y_neg_1_6(self) -> Self
Source§fn gap_y_neg_5_6(self) -> Self
fn gap_y_neg_5_6(self) -> Self
Source§fn gap_y_1_12(self) -> Self
fn gap_y_1_12(self) -> Self
Source§fn gap_y_neg_1_12(self) -> Self
fn gap_y_neg_1_12(self) -> Self
Source§fn rounded(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn rounded(self, length: impl Clone + Into<AbsoluteLength>) -> Self
Source§fn rounded_none(self) -> Self
fn rounded_none(self) -> Self
Source§fn rounded_xs(self) -> Self
fn rounded_xs(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
Source§fn rounded_t_none(self) -> Self
fn rounded_t_none(self) -> Self
Source§fn rounded_t_xs(self) -> Self
fn rounded_t_xs(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
Source§fn rounded_b_none(self) -> Self
fn rounded_b_none(self) -> Self
Source§fn rounded_b_xs(self) -> Self
fn rounded_b_xs(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
Source§fn rounded_r_none(self) -> Self
fn rounded_r_none(self) -> Self
Source§fn rounded_r_xs(self) -> Self
fn rounded_r_xs(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
Source§fn rounded_l_none(self) -> Self
fn rounded_l_none(self) -> Self
Source§fn rounded_l_xs(self) -> Self
fn rounded_l_xs(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
Source§fn rounded_tl_none(self) -> Self
fn rounded_tl_none(self) -> Self
Source§fn rounded_tl_xs(self) -> Self
fn rounded_tl_xs(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
Source§fn rounded_tr_none(self) -> Self
fn rounded_tr_none(self) -> Self
Source§fn rounded_tr_xs(self) -> Self
fn rounded_tr_xs(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
Source§fn rounded_bl_none(self) -> Self
fn rounded_bl_none(self) -> Self
Source§fn rounded_bl_xs(self) -> Self
fn rounded_bl_xs(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
Source§fn rounded_br_none(self) -> Self
fn rounded_br_none(self) -> Self
Source§fn rounded_br_xs(self) -> Self
fn rounded_br_xs(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 m_neg_full(self) -> Self
fn m_neg_full(self) -> Self
Source§fn m_neg_1_12(self) -> Self
fn m_neg_1_12(self) -> Self
Source§fn mt(self, length: impl Clone + Into<Length>) -> Self
fn mt(self, length: impl Clone + Into<Length>) -> Self
Source§fn mt_neg_0p5(self) -> Self
fn mt_neg_0p5(self) -> Self
Source§fn mt_neg_1p5(self) -> Self
fn mt_neg_1p5(self) -> Self
Source§fn mt_neg_2p5(self) -> Self
fn mt_neg_2p5(self) -> Self
Source§fn mt_neg_3p5(self) -> Self
fn mt_neg_3p5(self) -> Self
Source§fn mt_neg_112(self) -> Self
fn mt_neg_112(self) -> Self
Source§fn mt_neg_128(self) -> Self
fn mt_neg_128(self) -> Self
Source§fn mt_neg_full(self) -> Self
fn mt_neg_full(self) -> Self
Source§fn mt_neg_1_2(self) -> Self
fn mt_neg_1_2(self) -> Self
Source§fn mt_neg_1_3(self) -> Self
fn mt_neg_1_3(self) -> Self
Source§fn mt_neg_2_3(self) -> Self
fn mt_neg_2_3(self) -> Self
Source§fn mt_neg_1_4(self) -> Self
fn mt_neg_1_4(self) -> Self
Source§fn mt_neg_2_4(self) -> Self
fn mt_neg_2_4(self) -> Self
Source§fn mt_neg_3_4(self) -> Self
fn mt_neg_3_4(self) -> Self
Source§fn mt_neg_1_5(self) -> Self
fn mt_neg_1_5(self) -> Self
Source§fn mt_neg_2_5(self) -> Self
fn mt_neg_2_5(self) -> Self
Source§fn mt_neg_3_5(self) -> Self
fn mt_neg_3_5(self) -> Self
Source§fn mt_neg_4_5(self) -> Self
fn mt_neg_4_5(self) -> Self
Source§fn mt_neg_1_6(self) -> Self
fn mt_neg_1_6(self) -> Self
Source§fn mt_neg_5_6(self) -> Self
fn mt_neg_5_6(self) -> Self
Source§fn mt_neg_1_12(self) -> Self
fn mt_neg_1_12(self) -> Self
Source§fn mb(self, length: impl Clone + Into<Length>) -> Self
fn mb(self, length: impl Clone + Into<Length>) -> Self
Source§fn mb_neg_0p5(self) -> Self
fn mb_neg_0p5(self) -> Self
Source§fn mb_neg_1p5(self) -> Self
fn mb_neg_1p5(self) -> Self
Source§fn mb_neg_2p5(self) -> Self
fn mb_neg_2p5(self) -> Self
Source§fn mb_neg_3p5(self) -> Self
fn mb_neg_3p5(self) -> Self
Source§fn mb_neg_112(self) -> Self
fn mb_neg_112(self) -> Self
Source§fn mb_neg_128(self) -> Self
fn mb_neg_128(self) -> Self
Source§fn mb_neg_full(self) -> Self
fn mb_neg_full(self) -> Self
Source§fn mb_neg_1_2(self) -> Self
fn mb_neg_1_2(self) -> Self
Source§fn mb_neg_1_3(self) -> Self
fn mb_neg_1_3(self) -> Self
Source§fn mb_neg_2_3(self) -> Self
fn mb_neg_2_3(self) -> Self
Source§fn mb_neg_1_4(self) -> Self
fn mb_neg_1_4(self) -> Self
Source§fn mb_neg_2_4(self) -> Self
fn mb_neg_2_4(self) -> Self
Source§fn mb_neg_3_4(self) -> Self
fn mb_neg_3_4(self) -> Self
Source§fn mb_neg_1_5(self) -> Self
fn mb_neg_1_5(self) -> Self
Source§fn mb_neg_2_5(self) -> Self
fn mb_neg_2_5(self) -> Self
Source§fn mb_neg_3_5(self) -> Self
fn mb_neg_3_5(self) -> Self
Source§fn mb_neg_4_5(self) -> Self
fn mb_neg_4_5(self) -> Self
Source§fn mb_neg_1_6(self) -> Self
fn mb_neg_1_6(self) -> Self
Source§fn mb_neg_5_6(self) -> Self
fn mb_neg_5_6(self) -> Self
Source§fn mb_neg_1_12(self) -> Self
fn mb_neg_1_12(self) -> Self
Source§fn my(self, length: impl Clone + Into<Length>) -> Self
fn my(self, length: impl Clone + Into<Length>) -> Self
Source§fn my_neg_0p5(self) -> Self
fn my_neg_0p5(self) -> Self
Source§fn my_neg_1p5(self) -> Self
fn my_neg_1p5(self) -> Self
Source§fn my_neg_2p5(self) -> Self
fn my_neg_2p5(self) -> Self
Source§fn my_neg_3p5(self) -> Self
fn my_neg_3p5(self) -> Self
Source§fn my_neg_112(self) -> Self
fn my_neg_112(self) -> Self
Source§fn my_neg_128(self) -> Self
fn my_neg_128(self) -> Self
Source§fn my_neg_full(self) -> Self
fn my_neg_full(self) -> Self
Source§fn my_neg_1_2(self) -> Self
fn my_neg_1_2(self) -> Self
Source§fn my_neg_1_3(self) -> Self
fn my_neg_1_3(self) -> Self
Source§fn my_neg_2_3(self) -> Self
fn my_neg_2_3(self) -> Self
Source§fn my_neg_1_4(self) -> Self
fn my_neg_1_4(self) -> Self
Source§fn my_neg_2_4(self) -> Self
fn my_neg_2_4(self) -> Self
Source§fn my_neg_3_4(self) -> Self
fn my_neg_3_4(self) -> Self
Source§fn my_neg_1_5(self) -> Self
fn my_neg_1_5(self) -> Self
Source§fn my_neg_2_5(self) -> Self
fn my_neg_2_5(self) -> Self
Source§fn my_neg_3_5(self) -> Self
fn my_neg_3_5(self) -> Self
Source§fn my_neg_4_5(self) -> Self
fn my_neg_4_5(self) -> Self
Source§fn my_neg_1_6(self) -> Self
fn my_neg_1_6(self) -> Self
Source§fn my_neg_5_6(self) -> Self
fn my_neg_5_6(self) -> Self
Source§fn my_neg_1_12(self) -> Self
fn my_neg_1_12(self) -> Self
Source§fn mx(self, length: impl Clone + Into<Length>) -> Self
fn mx(self, length: impl Clone + Into<Length>) -> Self
Source§fn mx_neg_0p5(self) -> Self
fn mx_neg_0p5(self) -> Self
Source§fn mx_neg_1p5(self) -> Self
fn mx_neg_1p5(self) -> Self
Source§fn mx_neg_2p5(self) -> Self
fn mx_neg_2p5(self) -> Self
Source§fn mx_neg_3p5(self) -> Self
fn mx_neg_3p5(self) -> Self
Source§fn mx_neg_112(self) -> Self
fn mx_neg_112(self) -> Self
Source§fn mx_neg_128(self) -> Self
fn mx_neg_128(self) -> Self
Source§fn mx_neg_full(self) -> Self
fn mx_neg_full(self) -> Self
Source§fn mx_neg_1_2(self) -> Self
fn mx_neg_1_2(self) -> Self
Source§fn mx_neg_1_3(self) -> Self
fn mx_neg_1_3(self) -> Self
Source§fn mx_neg_2_3(self) -> Self
fn mx_neg_2_3(self) -> Self
Source§fn mx_neg_1_4(self) -> Self
fn mx_neg_1_4(self) -> Self
Source§fn mx_neg_2_4(self) -> Self
fn mx_neg_2_4(self) -> Self
Source§fn mx_neg_3_4(self) -> Self
fn mx_neg_3_4(self) -> Self
Source§fn mx_neg_1_5(self) -> Self
fn mx_neg_1_5(self) -> Self
Source§fn mx_neg_2_5(self) -> Self
fn mx_neg_2_5(self) -> Self
Source§fn mx_neg_3_5(self) -> Self
fn mx_neg_3_5(self) -> Self
Source§fn mx_neg_4_5(self) -> Self
fn mx_neg_4_5(self) -> Self
Source§fn mx_neg_1_6(self) -> Self
fn mx_neg_1_6(self) -> Self
Source§fn mx_neg_5_6(self) -> Self
fn mx_neg_5_6(self) -> Self
Source§fn mx_neg_1_12(self) -> Self
fn mx_neg_1_12(self) -> Self
Source§fn ml(self, length: impl Clone + Into<Length>) -> Self
fn ml(self, length: impl Clone + Into<Length>) -> Self
Source§fn ml_neg_0p5(self) -> Self
fn ml_neg_0p5(self) -> Self
Source§fn ml_neg_1p5(self) -> Self
fn ml_neg_1p5(self) -> Self
Source§fn ml_neg_2p5(self) -> Self
fn ml_neg_2p5(self) -> Self
Source§fn ml_neg_3p5(self) -> Self
fn ml_neg_3p5(self) -> Self
Source§fn ml_neg_112(self) -> Self
fn ml_neg_112(self) -> Self
Source§fn ml_neg_128(self) -> Self
fn ml_neg_128(self) -> Self
Source§fn ml_neg_full(self) -> Self
fn ml_neg_full(self) -> Self
Source§fn ml_neg_1_2(self) -> Self
fn ml_neg_1_2(self) -> Self
Source§fn ml_neg_1_3(self) -> Self
fn ml_neg_1_3(self) -> Self
Source§fn ml_neg_2_3(self) -> Self
fn ml_neg_2_3(self) -> Self
Source§fn ml_neg_1_4(self) -> Self
fn ml_neg_1_4(self) -> Self
Source§fn ml_neg_2_4(self) -> Self
fn ml_neg_2_4(self) -> Self
Source§fn ml_neg_3_4(self) -> Self
fn ml_neg_3_4(self) -> Self
Source§fn ml_neg_1_5(self) -> Self
fn ml_neg_1_5(self) -> Self
Source§fn ml_neg_2_5(self) -> Self
fn ml_neg_2_5(self) -> Self
Source§fn ml_neg_3_5(self) -> Self
fn ml_neg_3_5(self) -> Self
Source§fn ml_neg_4_5(self) -> Self
fn ml_neg_4_5(self) -> Self
Source§fn ml_neg_1_6(self) -> Self
fn ml_neg_1_6(self) -> Self
Source§fn ml_neg_5_6(self) -> Self
fn ml_neg_5_6(self) -> Self
Source§fn ml_neg_1_12(self) -> Self
fn ml_neg_1_12(self) -> Self
Source§fn mr(self, length: impl Clone + Into<Length>) -> Self
fn mr(self, length: impl Clone + Into<Length>) -> Self
Source§fn mr_neg_0p5(self) -> Self
fn mr_neg_0p5(self) -> Self
Source§fn mr_neg_1p5(self) -> Self
fn mr_neg_1p5(self) -> Self
Source§fn mr_neg_2p5(self) -> Self
fn mr_neg_2p5(self) -> Self
Source§fn mr_neg_3p5(self) -> Self
fn mr_neg_3p5(self) -> Self
Source§fn mr_neg_112(self) -> Self
fn mr_neg_112(self) -> Self
Source§fn mr_neg_128(self) -> Self
fn mr_neg_128(self) -> Self
Source§fn mr_neg_full(self) -> Self
fn mr_neg_full(self) -> Self
Source§fn mr_neg_1_2(self) -> Self
fn mr_neg_1_2(self) -> Self
Source§fn mr_neg_1_3(self) -> Self
fn mr_neg_1_3(self) -> Self
Source§fn mr_neg_2_3(self) -> Self
fn mr_neg_2_3(self) -> Self
Source§fn mr_neg_1_4(self) -> Self
fn mr_neg_1_4(self) -> Self
Source§fn mr_neg_2_4(self) -> Self
fn mr_neg_2_4(self) -> Self
Source§fn mr_neg_3_4(self) -> Self
fn mr_neg_3_4(self) -> Self
Source§fn mr_neg_1_5(self) -> Self
fn mr_neg_1_5(self) -> Self
Source§fn mr_neg_2_5(self) -> Self
fn mr_neg_2_5(self) -> Self
Source§fn mr_neg_3_5(self) -> Self
fn mr_neg_3_5(self) -> Self
Source§fn mr_neg_4_5(self) -> Self
fn mr_neg_4_5(self) -> Self
Source§fn mr_neg_1_6(self) -> Self
fn mr_neg_1_6(self) -> Self
Source§fn mr_neg_5_6(self) -> Self
fn mr_neg_5_6(self) -> Self
Source§fn mr_neg_1_12(self) -> Self
fn mr_neg_1_12(self) -> Self
Source§fn p(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn p(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn p_neg_full(self) -> Self
fn p_neg_full(self) -> Self
Source§fn p_neg_1_12(self) -> Self
fn p_neg_1_12(self) -> Self
Source§fn pt(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pt(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn pt_neg_0p5(self) -> Self
fn pt_neg_0p5(self) -> Self
Source§fn pt_neg_1p5(self) -> Self
fn pt_neg_1p5(self) -> Self
Source§fn pt_neg_2p5(self) -> Self
fn pt_neg_2p5(self) -> Self
Source§fn pt_neg_3p5(self) -> Self
fn pt_neg_3p5(self) -> Self
Source§fn pt_neg_112(self) -> Self
fn pt_neg_112(self) -> Self
Source§fn pt_neg_128(self) -> Self
fn pt_neg_128(self) -> Self
Source§fn pt_neg_full(self) -> Self
fn pt_neg_full(self) -> Self
Source§fn pt_neg_1_2(self) -> Self
fn pt_neg_1_2(self) -> Self
Source§fn pt_neg_1_3(self) -> Self
fn pt_neg_1_3(self) -> Self
Source§fn pt_neg_2_3(self) -> Self
fn pt_neg_2_3(self) -> Self
Source§fn pt_neg_1_4(self) -> Self
fn pt_neg_1_4(self) -> Self
Source§fn pt_neg_2_4(self) -> Self
fn pt_neg_2_4(self) -> Self
Source§fn pt_neg_3_4(self) -> Self
fn pt_neg_3_4(self) -> Self
Source§fn pt_neg_1_5(self) -> Self
fn pt_neg_1_5(self) -> Self
Source§fn pt_neg_2_5(self) -> Self
fn pt_neg_2_5(self) -> Self
Source§fn pt_neg_3_5(self) -> Self
fn pt_neg_3_5(self) -> Self
Source§fn pt_neg_4_5(self) -> Self
fn pt_neg_4_5(self) -> Self
Source§fn pt_neg_1_6(self) -> Self
fn pt_neg_1_6(self) -> Self
Source§fn pt_neg_5_6(self) -> Self
fn pt_neg_5_6(self) -> Self
Source§fn pt_neg_1_12(self) -> Self
fn pt_neg_1_12(self) -> Self
Source§fn pb(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pb(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn pb_neg_0p5(self) -> Self
fn pb_neg_0p5(self) -> Self
Source§fn pb_neg_1p5(self) -> Self
fn pb_neg_1p5(self) -> Self
Source§fn pb_neg_2p5(self) -> Self
fn pb_neg_2p5(self) -> Self
Source§fn pb_neg_3p5(self) -> Self
fn pb_neg_3p5(self) -> Self
Source§fn pb_neg_112(self) -> Self
fn pb_neg_112(self) -> Self
Source§fn pb_neg_128(self) -> Self
fn pb_neg_128(self) -> Self
Source§fn pb_neg_full(self) -> Self
fn pb_neg_full(self) -> Self
Source§fn pb_neg_1_2(self) -> Self
fn pb_neg_1_2(self) -> Self
Source§fn pb_neg_1_3(self) -> Self
fn pb_neg_1_3(self) -> Self
Source§fn pb_neg_2_3(self) -> Self
fn pb_neg_2_3(self) -> Self
Source§fn pb_neg_1_4(self) -> Self
fn pb_neg_1_4(self) -> Self
Source§fn pb_neg_2_4(self) -> Self
fn pb_neg_2_4(self) -> Self
Source§fn pb_neg_3_4(self) -> Self
fn pb_neg_3_4(self) -> Self
Source§fn pb_neg_1_5(self) -> Self
fn pb_neg_1_5(self) -> Self
Source§fn pb_neg_2_5(self) -> Self
fn pb_neg_2_5(self) -> Self
Source§fn pb_neg_3_5(self) -> Self
fn pb_neg_3_5(self) -> Self
Source§fn pb_neg_4_5(self) -> Self
fn pb_neg_4_5(self) -> Self
Source§fn pb_neg_1_6(self) -> Self
fn pb_neg_1_6(self) -> Self
Source§fn pb_neg_5_6(self) -> Self
fn pb_neg_5_6(self) -> Self
Source§fn pb_neg_1_12(self) -> Self
fn pb_neg_1_12(self) -> Self
Source§fn px(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn px(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn px_neg_0p5(self) -> Self
fn px_neg_0p5(self) -> Self
Source§fn px_neg_1p5(self) -> Self
fn px_neg_1p5(self) -> Self
Source§fn px_neg_2p5(self) -> Self
fn px_neg_2p5(self) -> Self
Source§fn px_neg_3p5(self) -> Self
fn px_neg_3p5(self) -> Self
Source§fn px_neg_112(self) -> Self
fn px_neg_112(self) -> Self
Source§fn px_neg_128(self) -> Self
fn px_neg_128(self) -> Self
Source§fn px_neg_full(self) -> Self
fn px_neg_full(self) -> Self
Source§fn px_neg_1_2(self) -> Self
fn px_neg_1_2(self) -> Self
Source§fn px_neg_1_3(self) -> Self
fn px_neg_1_3(self) -> Self
Source§fn px_neg_2_3(self) -> Self
fn px_neg_2_3(self) -> Self
Source§fn px_neg_1_4(self) -> Self
fn px_neg_1_4(self) -> Self
Source§fn px_neg_2_4(self) -> Self
fn px_neg_2_4(self) -> Self
Source§fn px_neg_3_4(self) -> Self
fn px_neg_3_4(self) -> Self
Source§fn px_neg_1_5(self) -> Self
fn px_neg_1_5(self) -> Self
Source§fn px_neg_2_5(self) -> Self
fn px_neg_2_5(self) -> Self
Source§fn px_neg_3_5(self) -> Self
fn px_neg_3_5(self) -> Self
Source§fn px_neg_4_5(self) -> Self
fn px_neg_4_5(self) -> Self
Source§fn px_neg_1_6(self) -> Self
fn px_neg_1_6(self) -> Self
Source§fn px_neg_5_6(self) -> Self
fn px_neg_5_6(self) -> Self
Source§fn px_neg_1_12(self) -> Self
fn px_neg_1_12(self) -> Self
Source§fn py(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn py(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn py_neg_0p5(self) -> Self
fn py_neg_0p5(self) -> Self
Source§fn py_neg_1p5(self) -> Self
fn py_neg_1p5(self) -> Self
Source§fn py_neg_2p5(self) -> Self
fn py_neg_2p5(self) -> Self
Source§fn py_neg_3p5(self) -> Self
fn py_neg_3p5(self) -> Self
Source§fn py_neg_112(self) -> Self
fn py_neg_112(self) -> Self
Source§fn py_neg_128(self) -> Self
fn py_neg_128(self) -> Self
Source§fn py_neg_full(self) -> Self
fn py_neg_full(self) -> Self
Source§fn py_neg_1_2(self) -> Self
fn py_neg_1_2(self) -> Self
Source§fn py_neg_1_3(self) -> Self
fn py_neg_1_3(self) -> Self
Source§fn py_neg_2_3(self) -> Self
fn py_neg_2_3(self) -> Self
Source§fn py_neg_1_4(self) -> Self
fn py_neg_1_4(self) -> Self
Source§fn py_neg_2_4(self) -> Self
fn py_neg_2_4(self) -> Self
Source§fn py_neg_3_4(self) -> Self
fn py_neg_3_4(self) -> Self
Source§fn py_neg_1_5(self) -> Self
fn py_neg_1_5(self) -> Self
Source§fn py_neg_2_5(self) -> Self
fn py_neg_2_5(self) -> Self
Source§fn py_neg_3_5(self) -> Self
fn py_neg_3_5(self) -> Self
Source§fn py_neg_4_5(self) -> Self
fn py_neg_4_5(self) -> Self
Source§fn py_neg_1_6(self) -> Self
fn py_neg_1_6(self) -> Self
Source§fn py_neg_5_6(self) -> Self
fn py_neg_5_6(self) -> Self
Source§fn py_neg_1_12(self) -> Self
fn py_neg_1_12(self) -> Self
Source§fn pl(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pl(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn pl_neg_0p5(self) -> Self
fn pl_neg_0p5(self) -> Self
Source§fn pl_neg_1p5(self) -> Self
fn pl_neg_1p5(self) -> Self
Source§fn pl_neg_2p5(self) -> Self
fn pl_neg_2p5(self) -> Self
Source§fn pl_neg_3p5(self) -> Self
fn pl_neg_3p5(self) -> Self
Source§fn pl_neg_112(self) -> Self
fn pl_neg_112(self) -> Self
Source§fn pl_neg_128(self) -> Self
fn pl_neg_128(self) -> Self
Source§fn pl_neg_full(self) -> Self
fn pl_neg_full(self) -> Self
Source§fn pl_neg_1_2(self) -> Self
fn pl_neg_1_2(self) -> Self
Source§fn pl_neg_1_3(self) -> Self
fn pl_neg_1_3(self) -> Self
Source§fn pl_neg_2_3(self) -> Self
fn pl_neg_2_3(self) -> Self
Source§fn pl_neg_1_4(self) -> Self
fn pl_neg_1_4(self) -> Self
Source§fn pl_neg_2_4(self) -> Self
fn pl_neg_2_4(self) -> Self
Source§fn pl_neg_3_4(self) -> Self
fn pl_neg_3_4(self) -> Self
Source§fn pl_neg_1_5(self) -> Self
fn pl_neg_1_5(self) -> Self
Source§fn pl_neg_2_5(self) -> Self
fn pl_neg_2_5(self) -> Self
Source§fn pl_neg_3_5(self) -> Self
fn pl_neg_3_5(self) -> Self
Source§fn pl_neg_4_5(self) -> Self
fn pl_neg_4_5(self) -> Self
Source§fn pl_neg_1_6(self) -> Self
fn pl_neg_1_6(self) -> Self
Source§fn pl_neg_5_6(self) -> Self
fn pl_neg_5_6(self) -> Self
Source§fn pl_neg_1_12(self) -> Self
fn pl_neg_1_12(self) -> Self
Source§fn pr(self, length: impl Clone + Into<DefiniteLength>) -> Self
fn pr(self, length: impl Clone + Into<DefiniteLength>) -> Self
Source§fn pr_neg_0p5(self) -> Self
fn pr_neg_0p5(self) -> Self
Source§fn pr_neg_1p5(self) -> Self
fn pr_neg_1p5(self) -> Self
Source§fn pr_neg_2p5(self) -> Self
fn pr_neg_2p5(self) -> Self
Source§fn pr_neg_3p5(self) -> Self
fn pr_neg_3p5(self) -> Self
Source§fn pr_neg_112(self) -> Self
fn pr_neg_112(self) -> Self
Source§fn pr_neg_128(self) -> Self
fn pr_neg_128(self) -> Self
Source§fn pr_neg_full(self) -> Self
fn pr_neg_full(self) -> Self
Source§fn pr_neg_1_2(self) -> Self
fn pr_neg_1_2(self) -> Self
Source§fn pr_neg_1_3(self) -> Self
fn pr_neg_1_3(self) -> Self
Source§fn pr_neg_2_3(self) -> Self
fn pr_neg_2_3(self) -> Self
Source§fn pr_neg_1_4(self) -> Self
fn pr_neg_1_4(self) -> Self
Source§fn pr_neg_2_4(self) -> Self
fn pr_neg_2_4(self) -> Self
Source§fn pr_neg_3_4(self) -> Self
fn pr_neg_3_4(self) -> Self
Source§fn pr_neg_1_5(self) -> Self
fn pr_neg_1_5(self) -> Self
Source§fn pr_neg_2_5(self) -> Self
fn pr_neg_2_5(self) -> Self
Source§fn pr_neg_3_5(self) -> Self
fn pr_neg_3_5(self) -> Self
Source§fn pr_neg_4_5(self) -> Self
fn pr_neg_4_5(self) -> Self
Source§fn pr_neg_1_6(self) -> Self
fn pr_neg_1_6(self) -> Self
Source§fn pr_neg_5_6(self) -> Self
fn pr_neg_5_6(self) -> Self
Source§fn pr_neg_1_12(self) -> Self
fn pr_neg_1_12(self) -> Self
Source§fn inset(self, length: impl Clone + Into<Length>) -> Self
fn inset(self, length: impl Clone + Into<Length>) -> Self
Source§fn inset_neg_0(self) -> Self
fn inset_neg_0(self) -> Self
Source§fn inset_neg_0p5(self) -> Self
fn inset_neg_0p5(self) -> Self
Source§fn inset_neg_1(self) -> Self
fn inset_neg_1(self) -> Self
Source§fn inset_neg_1p5(self) -> Self
fn inset_neg_1p5(self) -> Self
Source§fn inset_neg_2(self) -> Self
fn inset_neg_2(self) -> Self
Source§fn inset_neg_2p5(self) -> Self
fn inset_neg_2p5(self) -> Self
Source§fn inset_neg_3(self) -> Self
fn inset_neg_3(self) -> Self
Source§fn inset_neg_3p5(self) -> Self
fn inset_neg_3p5(self) -> Self
Source§fn inset_neg_4(self) -> Self
fn inset_neg_4(self) -> Self
Source§fn inset_neg_5(self) -> Self
fn inset_neg_5(self) -> Self
Source§fn inset_neg_6(self) -> Self
fn inset_neg_6(self) -> Self
Source§fn inset_neg_7(self) -> Self
fn inset_neg_7(self) -> Self
Source§fn inset_neg_8(self) -> Self
fn inset_neg_8(self) -> Self
Source§fn inset_neg_9(self) -> Self
fn inset_neg_9(self) -> Self
Source§fn inset_neg_10(self) -> Self
fn inset_neg_10(self) -> Self
Source§fn inset_neg_11(self) -> Self
fn inset_neg_11(self) -> Self
Source§fn inset_neg_12(self) -> Self
fn inset_neg_12(self) -> Self
Source§fn inset_neg_16(self) -> Self
fn inset_neg_16(self) -> Self
Source§fn inset_neg_20(self) -> Self
fn inset_neg_20(self) -> Self
Source§fn inset_neg_24(self) -> Self
fn inset_neg_24(self) -> Self
Source§fn inset_neg_32(self) -> Self
fn inset_neg_32(self) -> Self
Source§fn inset_neg_40(self) -> Self
fn inset_neg_40(self) -> Self
Source§fn inset_neg_48(self) -> Self
fn inset_neg_48(self) -> Self
Source§fn inset_neg_56(self) -> Self
fn inset_neg_56(self) -> Self
Source§fn inset_neg_64(self) -> Self
fn inset_neg_64(self) -> Self
Source§fn inset_neg_72(self) -> Self
fn inset_neg_72(self) -> Self
Source§fn inset_neg_80(self) -> Self
fn inset_neg_80(self) -> Self
Source§fn inset_neg_96(self) -> Self
fn inset_neg_96(self) -> Self
Source§fn inset_neg_112(self) -> Self
fn inset_neg_112(self) -> Self
Source§fn inset_neg_128(self) -> Self
fn inset_neg_128(self) -> Self
Source§fn inset_auto(self) -> Self
fn inset_auto(self) -> Self
Source§fn inset_neg_px(self) -> Self
fn inset_neg_px(self) -> Self
Source§fn inset_full(self) -> Self
fn inset_full(self) -> Self
Source§fn inset_neg_full(self) -> Self
fn inset_neg_full(self) -> Self
Source§fn inset_neg_1_2(self) -> Self
fn inset_neg_1_2(self) -> Self
Source§fn inset_neg_1_3(self) -> Self
fn inset_neg_1_3(self) -> Self
Source§fn inset_neg_2_3(self) -> Self
fn inset_neg_2_3(self) -> Self
Source§fn inset_neg_1_4(self) -> Self
fn inset_neg_1_4(self) -> Self
Source§fn inset_neg_2_4(self) -> Self
fn inset_neg_2_4(self) -> Self
Source§fn inset_neg_3_4(self) -> Self
fn inset_neg_3_4(self) -> Self
Source§fn inset_neg_1_5(self) -> Self
fn inset_neg_1_5(self) -> Self
Source§fn inset_neg_2_5(self) -> Self
fn inset_neg_2_5(self) -> Self
Source§fn inset_neg_3_5(self) -> Self
fn inset_neg_3_5(self) -> Self
Source§fn inset_neg_4_5(self) -> Self
fn inset_neg_4_5(self) -> Self
Source§fn inset_neg_1_6(self) -> Self
fn inset_neg_1_6(self) -> Self
Source§fn inset_neg_5_6(self) -> Self
fn inset_neg_5_6(self) -> Self
Source§fn inset_1_12(self) -> Self
fn inset_1_12(self) -> Self
Source§fn inset_neg_1_12(self) -> Self
fn inset_neg_1_12(self) -> Self
Source§fn top(self, length: impl Clone + Into<Length>) -> Self
fn top(self, length: impl Clone + Into<Length>) -> Self
Source§fn top_neg_0p5(self) -> Self
fn top_neg_0p5(self) -> Self
Source§fn top_neg_1p5(self) -> Self
fn top_neg_1p5(self) -> Self
Source§fn top_neg_2p5(self) -> Self
fn top_neg_2p5(self) -> Self
Source§fn top_neg_3p5(self) -> Self
fn top_neg_3p5(self) -> Self
Source§fn top_neg_10(self) -> Self
fn top_neg_10(self) -> Self
Source§fn top_neg_11(self) -> Self
fn top_neg_11(self) -> Self
Source§fn top_neg_12(self) -> Self
fn top_neg_12(self) -> Self
Source§fn top_neg_16(self) -> Self
fn top_neg_16(self) -> Self
Source§fn top_neg_20(self) -> Self
fn top_neg_20(self) -> Self
Source§fn top_neg_24(self) -> Self
fn top_neg_24(self) -> Self
Source§fn top_neg_32(self) -> Self
fn top_neg_32(self) -> Self
Source§fn top_neg_40(self) -> Self
fn top_neg_40(self) -> Self
Source§fn top_neg_48(self) -> Self
fn top_neg_48(self) -> Self
Source§fn top_neg_56(self) -> Self
fn top_neg_56(self) -> Self
Source§fn top_neg_64(self) -> Self
fn top_neg_64(self) -> Self
Source§fn top_neg_72(self) -> Self
fn top_neg_72(self) -> Self
Source§fn top_neg_80(self) -> Self
fn top_neg_80(self) -> Self
Source§fn top_neg_96(self) -> Self
fn top_neg_96(self) -> Self
Source§fn top_neg_112(self) -> Self
fn top_neg_112(self) -> Self
Source§fn top_neg_128(self) -> Self
fn top_neg_128(self) -> Self
Source§fn top_neg_px(self) -> Self
fn top_neg_px(self) -> Self
Source§fn top_neg_full(self) -> Self
fn top_neg_full(self) -> Self
Source§fn top_neg_1_2(self) -> Self
fn top_neg_1_2(self) -> Self
Source§fn top_neg_1_3(self) -> Self
fn top_neg_1_3(self) -> Self
Source§fn top_neg_2_3(self) -> Self
fn top_neg_2_3(self) -> Self
Source§fn top_neg_1_4(self) -> Self
fn top_neg_1_4(self) -> Self
Source§fn top_neg_2_4(self) -> Self
fn top_neg_2_4(self) -> Self
Source§fn top_neg_3_4(self) -> Self
fn top_neg_3_4(self) -> Self
Source§fn top_neg_1_5(self) -> Self
fn top_neg_1_5(self) -> Self
Source§fn top_neg_2_5(self) -> Self
fn top_neg_2_5(self) -> Self
Source§fn top_neg_3_5(self) -> Self
fn top_neg_3_5(self) -> Self
Source§fn top_neg_4_5(self) -> Self
fn top_neg_4_5(self) -> Self
Source§fn top_neg_1_6(self) -> Self
fn top_neg_1_6(self) -> Self
Source§fn top_neg_5_6(self) -> Self
fn top_neg_5_6(self) -> Self
Source§fn top_neg_1_12(self) -> Self
fn top_neg_1_12(self) -> Self
Source§fn bottom(self, length: impl Clone + Into<Length>) -> Self
fn bottom(self, length: impl Clone + Into<Length>) -> Self
Source§fn bottom_neg_0(self) -> Self
fn bottom_neg_0(self) -> Self
Source§fn bottom_0p5(self) -> Self
fn bottom_0p5(self) -> Self
Source§fn bottom_neg_0p5(self) -> Self
fn bottom_neg_0p5(self) -> Self
Source§fn bottom_neg_1(self) -> Self
fn bottom_neg_1(self) -> Self
Source§fn bottom_1p5(self) -> Self
fn bottom_1p5(self) -> Self
Source§fn bottom_neg_1p5(self) -> Self
fn bottom_neg_1p5(self) -> Self
Source§fn bottom_neg_2(self) -> Self
fn bottom_neg_2(self) -> Self
Source§fn bottom_2p5(self) -> Self
fn bottom_2p5(self) -> Self
Source§fn bottom_neg_2p5(self) -> Self
fn bottom_neg_2p5(self) -> Self
Source§fn bottom_neg_3(self) -> Self
fn bottom_neg_3(self) -> Self
Source§fn bottom_3p5(self) -> Self
fn bottom_3p5(self) -> Self
Source§fn bottom_neg_3p5(self) -> Self
fn bottom_neg_3p5(self) -> Self
Source§fn bottom_neg_4(self) -> Self
fn bottom_neg_4(self) -> Self
Source§fn bottom_neg_5(self) -> Self
fn bottom_neg_5(self) -> Self
Source§fn bottom_neg_6(self) -> Self
fn bottom_neg_6(self) -> Self
Source§fn bottom_neg_7(self) -> Self
fn bottom_neg_7(self) -> Self
Source§fn bottom_neg_8(self) -> Self
fn bottom_neg_8(self) -> Self
Source§fn bottom_neg_9(self) -> Self
fn bottom_neg_9(self) -> Self
Source§fn bottom_neg_10(self) -> Self
fn bottom_neg_10(self) -> Self
Source§fn bottom_neg_11(self) -> Self
fn bottom_neg_11(self) -> Self
Source§fn bottom_neg_12(self) -> Self
fn bottom_neg_12(self) -> Self
Source§fn bottom_neg_16(self) -> Self
fn bottom_neg_16(self) -> Self
Source§fn bottom_neg_20(self) -> Self
fn bottom_neg_20(self) -> Self
Source§fn bottom_neg_24(self) -> Self
fn bottom_neg_24(self) -> Self
Source§fn bottom_neg_32(self) -> Self
fn bottom_neg_32(self) -> Self
Source§fn bottom_neg_40(self) -> Self
fn bottom_neg_40(self) -> Self
Source§fn bottom_neg_48(self) -> Self
fn bottom_neg_48(self) -> Self
Source§fn bottom_neg_56(self) -> Self
fn bottom_neg_56(self) -> Self
Source§fn bottom_neg_64(self) -> Self
fn bottom_neg_64(self) -> Self
Source§fn bottom_neg_72(self) -> Self
fn bottom_neg_72(self) -> Self
Source§fn bottom_neg_80(self) -> Self
fn bottom_neg_80(self) -> Self
Source§fn bottom_neg_96(self) -> Self
fn bottom_neg_96(self) -> Self
Source§fn bottom_112(self) -> Self
fn bottom_112(self) -> Self
Source§fn bottom_neg_112(self) -> Self
fn bottom_neg_112(self) -> Self
Source§fn bottom_128(self) -> Self
fn bottom_128(self) -> Self
Source§fn bottom_neg_128(self) -> Self
fn bottom_neg_128(self) -> Self
Source§fn bottom_auto(self) -> Self
fn bottom_auto(self) -> Self
Source§fn bottom_neg_px(self) -> Self
fn bottom_neg_px(self) -> Self
Source§fn bottom_full(self) -> Self
fn bottom_full(self) -> Self
Source§fn bottom_neg_full(self) -> Self
fn bottom_neg_full(self) -> Self
Source§fn bottom_1_2(self) -> Self
fn bottom_1_2(self) -> Self
Source§fn bottom_neg_1_2(self) -> Self
fn bottom_neg_1_2(self) -> Self
Source§fn bottom_1_3(self) -> Self
fn bottom_1_3(self) -> Self
Source§fn bottom_neg_1_3(self) -> Self
fn bottom_neg_1_3(self) -> Self
Source§fn bottom_2_3(self) -> Self
fn bottom_2_3(self) -> Self
Source§fn bottom_neg_2_3(self) -> Self
fn bottom_neg_2_3(self) -> Self
Source§fn bottom_1_4(self) -> Self
fn bottom_1_4(self) -> Self
Source§fn bottom_neg_1_4(self) -> Self
fn bottom_neg_1_4(self) -> Self
Source§fn bottom_2_4(self) -> Self
fn bottom_2_4(self) -> Self
Source§fn bottom_neg_2_4(self) -> Self
fn bottom_neg_2_4(self) -> Self
Source§fn bottom_3_4(self) -> Self
fn bottom_3_4(self) -> Self
Source§fn bottom_neg_3_4(self) -> Self
fn bottom_neg_3_4(self) -> Self
Source§fn bottom_1_5(self) -> Self
fn bottom_1_5(self) -> Self
Source§fn bottom_neg_1_5(self) -> Self
fn bottom_neg_1_5(self) -> Self
Source§fn bottom_2_5(self) -> Self
fn bottom_2_5(self) -> Self
Source§fn bottom_neg_2_5(self) -> Self
fn bottom_neg_2_5(self) -> Self
Source§fn bottom_3_5(self) -> Self
fn bottom_3_5(self) -> Self
Source§fn bottom_neg_3_5(self) -> Self
fn bottom_neg_3_5(self) -> Self
Source§fn bottom_4_5(self) -> Self
fn bottom_4_5(self) -> Self
Source§fn bottom_neg_4_5(self) -> Self
fn bottom_neg_4_5(self) -> Self
Source§fn bottom_1_6(self) -> Self
fn bottom_1_6(self) -> Self
Source§fn bottom_neg_1_6(self) -> Self
fn bottom_neg_1_6(self) -> Self
Source§fn bottom_5_6(self) -> Self
fn bottom_5_6(self) -> Self
Source§fn bottom_neg_5_6(self) -> Self
fn bottom_neg_5_6(self) -> Self
Source§fn bottom_1_12(self) -> Self
fn bottom_1_12(self) -> Self
Source§fn bottom_neg_1_12(self) -> Self
fn bottom_neg_1_12(self) -> Self
Source§fn left(self, length: impl Clone + Into<Length>) -> Self
fn left(self, length: impl Clone + Into<Length>) -> Self
Source§fn left_neg_0(self) -> Self
fn left_neg_0(self) -> Self
Source§fn left_neg_0p5(self) -> Self
fn left_neg_0p5(self) -> Self
Source§fn left_neg_1(self) -> Self
fn left_neg_1(self) -> Self
Source§fn left_neg_1p5(self) -> Self
fn left_neg_1p5(self) -> Self
Source§fn left_neg_2(self) -> Self
fn left_neg_2(self) -> Self
Source§fn left_neg_2p5(self) -> Self
fn left_neg_2p5(self) -> Self
Source§fn left_neg_3(self) -> Self
fn left_neg_3(self) -> Self
Source§fn left_neg_3p5(self) -> Self
fn left_neg_3p5(self) -> Self
Source§fn left_neg_4(self) -> Self
fn left_neg_4(self) -> Self
Source§fn left_neg_5(self) -> Self
fn left_neg_5(self) -> Self
Source§fn left_neg_6(self) -> Self
fn left_neg_6(self) -> Self
Source§fn left_neg_7(self) -> Self
fn left_neg_7(self) -> Self
Source§fn left_neg_8(self) -> Self
fn left_neg_8(self) -> Self
Source§fn left_neg_9(self) -> Self
fn left_neg_9(self) -> Self
Source§fn left_neg_10(self) -> Self
fn left_neg_10(self) -> Self
Source§fn left_neg_11(self) -> Self
fn left_neg_11(self) -> Self
Source§fn left_neg_12(self) -> Self
fn left_neg_12(self) -> Self
Source§fn left_neg_16(self) -> Self
fn left_neg_16(self) -> Self
Source§fn left_neg_20(self) -> Self
fn left_neg_20(self) -> Self
Source§fn left_neg_24(self) -> Self
fn left_neg_24(self) -> Self
Source§fn left_neg_32(self) -> Self
fn left_neg_32(self) -> Self
Source§fn left_neg_40(self) -> Self
fn left_neg_40(self) -> Self
Source§fn left_neg_48(self) -> Self
fn left_neg_48(self) -> Self
Source§fn left_neg_56(self) -> Self
fn left_neg_56(self) -> Self
Source§fn left_neg_64(self) -> Self
fn left_neg_64(self) -> Self
Source§fn left_neg_72(self) -> Self
fn left_neg_72(self) -> Self
Source§fn left_neg_80(self) -> Self
fn left_neg_80(self) -> Self
Source§fn left_neg_96(self) -> Self
fn left_neg_96(self) -> Self
Source§fn left_neg_112(self) -> Self
fn left_neg_112(self) -> Self
Source§fn left_neg_128(self) -> Self
fn left_neg_128(self) -> Self
Source§fn left_neg_px(self) -> Self
fn left_neg_px(self) -> Self
Source§fn left_neg_full(self) -> Self
fn left_neg_full(self) -> Self
Source§fn left_neg_1_2(self) -> Self
fn left_neg_1_2(self) -> Self
Source§fn left_neg_1_3(self) -> Self
fn left_neg_1_3(self) -> Self
Source§fn left_neg_2_3(self) -> Self
fn left_neg_2_3(self) -> Self
Source§fn left_neg_1_4(self) -> Self
fn left_neg_1_4(self) -> Self
Source§fn left_neg_2_4(self) -> Self
fn left_neg_2_4(self) -> Self
Source§fn left_neg_3_4(self) -> Self
fn left_neg_3_4(self) -> Self
Source§fn left_neg_1_5(self) -> Self
fn left_neg_1_5(self) -> Self
Source§fn left_neg_2_5(self) -> Self
fn left_neg_2_5(self) -> Self
Source§fn left_neg_3_5(self) -> Self
fn left_neg_3_5(self) -> Self
Source§fn left_neg_4_5(self) -> Self
fn left_neg_4_5(self) -> Self
Source§fn left_neg_1_6(self) -> Self
fn left_neg_1_6(self) -> Self
Source§fn left_neg_5_6(self) -> Self
fn left_neg_5_6(self) -> Self
Source§fn left_neg_1_12(self) -> Self
fn left_neg_1_12(self) -> Self
Source§fn right(self, length: impl Clone + Into<Length>) -> Self
fn right(self, length: impl Clone + Into<Length>) -> Self
Source§fn right_neg_0(self) -> Self
fn right_neg_0(self) -> Self
Source§fn right_neg_0p5(self) -> Self
fn right_neg_0p5(self) -> Self
Source§fn right_neg_1(self) -> Self
fn right_neg_1(self) -> Self
Source§fn right_neg_1p5(self) -> Self
fn right_neg_1p5(self) -> Self
Source§fn right_neg_2(self) -> Self
fn right_neg_2(self) -> Self
Source§fn right_neg_2p5(self) -> Self
fn right_neg_2p5(self) -> Self
Source§fn right_neg_3(self) -> Self
fn right_neg_3(self) -> Self
Source§fn right_neg_3p5(self) -> Self
fn right_neg_3p5(self) -> Self
Source§fn right_neg_4(self) -> Self
fn right_neg_4(self) -> Self
Source§fn right_neg_5(self) -> Self
fn right_neg_5(self) -> Self
Source§fn right_neg_6(self) -> Self
fn right_neg_6(self) -> Self
Source§fn right_neg_7(self) -> Self
fn right_neg_7(self) -> Self
Source§fn right_neg_8(self) -> Self
fn right_neg_8(self) -> Self
Source§fn right_neg_9(self) -> Self
fn right_neg_9(self) -> Self
Source§fn right_neg_10(self) -> Self
fn right_neg_10(self) -> Self
Source§fn right_neg_11(self) -> Self
fn right_neg_11(self) -> Self
Source§fn right_neg_12(self) -> Self
fn right_neg_12(self) -> Self
Source§fn right_neg_16(self) -> Self
fn right_neg_16(self) -> Self
Source§fn right_neg_20(self) -> Self
fn right_neg_20(self) -> Self
Source§fn right_neg_24(self) -> Self
fn right_neg_24(self) -> Self
Source§fn right_neg_32(self) -> Self
fn right_neg_32(self) -> Self
Source§fn right_neg_40(self) -> Self
fn right_neg_40(self) -> Self
Source§fn right_neg_48(self) -> Self
fn right_neg_48(self) -> Self
Source§fn right_neg_56(self) -> Self
fn right_neg_56(self) -> Self
Source§fn right_neg_64(self) -> Self
fn right_neg_64(self) -> Self
Source§fn right_neg_72(self) -> Self
fn right_neg_72(self) -> Self
Source§fn right_neg_80(self) -> Self
fn right_neg_80(self) -> Self
Source§fn right_neg_96(self) -> Self
fn right_neg_96(self) -> Self
Source§fn right_neg_112(self) -> Self
fn right_neg_112(self) -> Self
Source§fn right_neg_128(self) -> Self
fn right_neg_128(self) -> Self
Source§fn right_auto(self) -> Self
fn right_auto(self) -> Self
Source§fn right_neg_px(self) -> Self
fn right_neg_px(self) -> Self
Source§fn right_full(self) -> Self
fn right_full(self) -> Self
Source§fn right_neg_full(self) -> Self
fn right_neg_full(self) -> Self
Source§fn right_neg_1_2(self) -> Self
fn right_neg_1_2(self) -> Self
Source§fn right_neg_1_3(self) -> Self
fn right_neg_1_3(self) -> Self
Source§fn right_neg_2_3(self) -> Self
fn right_neg_2_3(self) -> Self
Source§fn right_neg_1_4(self) -> Self
fn right_neg_1_4(self) -> Self
Source§fn right_neg_2_4(self) -> Self
fn right_neg_2_4(self) -> Self
Source§fn right_neg_3_4(self) -> Self
fn right_neg_3_4(self) -> Self
Source§fn right_neg_1_5(self) -> Self
fn right_neg_1_5(self) -> Self
Source§fn right_neg_2_5(self) -> Self
fn right_neg_2_5(self) -> Self
Source§fn right_neg_3_5(self) -> Self
fn right_neg_3_5(self) -> Self
Source§fn right_neg_4_5(self) -> Self
fn right_neg_4_5(self) -> Self
Source§fn right_neg_1_6(self) -> Self
fn right_neg_1_6(self) -> Self
Source§fn right_neg_5_6(self) -> Self
fn right_neg_5_6(self) -> Self
Source§fn right_1_12(self) -> Self
fn right_1_12(self) -> Self
Source§fn right_neg_1_12(self) -> Self
fn right_neg_1_12(self) -> Self
Source§fn cursor(self, cursor: CursorStyle) -> Self
fn cursor(self, cursor: CursorStyle) -> Self
Source§fn cursor_default(self) -> Self
fn cursor_default(self) -> Self
default.
DocsSource§fn cursor_pointer(self) -> Self
fn cursor_pointer(self) -> Self
pointer.
DocsSource§fn cursor_text(self) -> Self
fn cursor_text(self) -> Self
text.
DocsSource§fn cursor_move(self) -> Self
fn cursor_move(self) -> Self
move.
DocsSource§fn cursor_not_allowed(self) -> Self
fn cursor_not_allowed(self) -> Self
not-allowed.
Docscontext-menu.
DocsSource§fn cursor_crosshair(self) -> Self
fn cursor_crosshair(self) -> Self
crosshair.
DocsSource§fn cursor_vertical_text(self) -> Self
fn cursor_vertical_text(self) -> Self
vertical-text.
DocsSource§fn cursor_alias(self) -> Self
fn cursor_alias(self) -> Self
alias.
DocsSource§fn cursor_copy(self) -> Self
fn cursor_copy(self) -> Self
copy.
DocsSource§fn cursor_no_drop(self) -> Self
fn cursor_no_drop(self) -> Self
no-drop.
DocsSource§fn cursor_grab(self) -> Self
fn cursor_grab(self) -> Self
grab.
DocsSource§fn cursor_grabbing(self) -> Self
fn cursor_grabbing(self) -> Self
grabbing.
DocsSource§fn cursor_ew_resize(self) -> Self
fn cursor_ew_resize(self) -> Self
ew-resize.
DocsSource§fn cursor_ns_resize(self) -> Self
fn cursor_ns_resize(self) -> Self
ns-resize.
DocsSource§fn cursor_nesw_resize(self) -> Self
fn cursor_nesw_resize(self) -> Self
nesw-resize.
DocsSource§fn cursor_nwse_resize(self) -> Self
fn cursor_nwse_resize(self) -> Self
nwse-resize.
DocsSource§fn cursor_col_resize(self) -> Self
fn cursor_col_resize(self) -> Self
col-resize.
DocsSource§fn cursor_row_resize(self) -> Self
fn cursor_row_resize(self) -> Self
row-resize.
DocsSource§fn cursor_n_resize(self) -> Self
fn cursor_n_resize(self) -> Self
n-resize.
DocsSource§fn cursor_e_resize(self) -> Self
fn cursor_e_resize(self) -> Self
e-resize.
DocsSource§fn cursor_s_resize(self) -> Self
fn cursor_s_resize(self) -> Self
s-resize.
DocsSource§fn cursor_w_resize(self) -> Self
fn cursor_w_resize(self) -> Self
w-resize.
DocsSource§fn border_color<C>(self, border_color: C) -> Self
fn border_color<C>(self, border_color: C) -> Self
Source§fn border(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn border(self, length: impl Clone + Into<AbsoluteLength>) -> Self
Source§fn border_t(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn border_t(self, length: impl Clone + Into<AbsoluteLength>) -> 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(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn border_b(self, length: impl Clone + Into<AbsoluteLength>) -> 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(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn border_r(self, length: impl Clone + Into<AbsoluteLength>) -> 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(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn border_l(self, length: impl Clone + Into<AbsoluteLength>) -> 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(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn border_x(self, length: impl Clone + Into<AbsoluteLength>) -> 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(self, length: impl Clone + Into<AbsoluteLength>) -> Self
fn border_y(self, length: impl Clone + Into<AbsoluteLength>) -> 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
Source§fn shadow_none(self) -> Self
fn shadow_none(self) -> Self
Source§fn shadow_2xs(self) -> Self
fn shadow_2xs(self) -> Self
Source§fn shadow_2xl(self) -> Self
fn shadow_2xl(self) -> Self
none.
DocsSource§fn scrollbar_width(self, width: impl Into<AbsoluteLength>) -> Self
fn scrollbar_width(self, width: impl Into<AbsoluteLength>) -> Self
Source§fn whitespace_normal(self) -> Self
fn whitespace_normal(self) -> Self
normal.
DocsSource§fn whitespace_nowrap(self) -> Self
fn whitespace_nowrap(self) -> Self
nowrap.
DocsSource§fn text_ellipsis(self) -> Self
fn text_ellipsis(self) -> Self
Source§fn text_ellipsis_start(self) -> Self
fn text_ellipsis_start(self) -> Self
Source§fn text_overflow(self, overflow: TextOverflow) -> Self
fn text_overflow(self, overflow: TextOverflow) -> Self
Source§fn text_align(self, align: TextAlign) -> Self
fn text_align(self, align: TextAlign) -> Self
Source§fn text_center(self) -> Self
fn text_center(self) -> Self
Source§fn text_right(self) -> Self
fn text_right(self) -> Self
Source§fn truncate(self) -> Self
fn truncate(self) -> Self
Source§fn line_clamp(self, lines: usize) -> Self
fn line_clamp(self, lines: usize) -> Self
Source§fn flex_col_reverse(self) -> Self
fn flex_col_reverse(self) -> Self
column-reverse.
DocsSource§fn flex_row_reverse(self) -> Self
fn flex_row_reverse(self) -> Self
row-reverse.
DocsSource§fn flex_1(self) -> Self
fn flex_1(self) -> Self
Source§fn flex_auto(self) -> Self
fn flex_auto(self) -> Self
Source§fn flex_initial(self) -> Self
fn flex_initial(self) -> Self
Source§fn flex_none(self) -> Self
fn flex_none(self) -> Self
Source§fn flex_basis(self, basis: impl Into<Length>) -> Self
fn flex_basis(self, basis: impl Into<Length>) -> Self
Source§fn flex_grow(self) -> Self
fn flex_grow(self) -> Self
Source§fn flex_grow_0(self) -> Self
fn flex_grow_0(self) -> Self
Source§fn flex_shrink(self) -> Self
fn flex_shrink(self) -> Self
Source§fn flex_shrink_0(self) -> Self
fn flex_shrink_0(self) -> Self
Source§fn flex_wrap_reverse(self) -> Self
fn flex_wrap_reverse(self) -> Self
Source§fn flex_nowrap(self) -> Self
fn flex_nowrap(self) -> Self
Source§fn items_start(self) -> Self
fn items_start(self) -> Self
Source§fn items_end(self) -> Self
fn items_end(self) -> Self
Source§fn items_center(self) -> Self
fn items_center(self) -> Self
Source§fn items_baseline(self) -> Self
fn items_baseline(self) -> Self
Source§fn items_stretch(self) -> Self
fn items_stretch(self) -> Self
Source§fn self_start(self) -> Self
fn self_start(self) -> Self
Source§fn self_end(self) -> Self
fn self_end(self) -> Self
Source§fn self_flex_start(self) -> Self
fn self_flex_start(self) -> Self
Source§fn self_flex_end(self) -> Self
fn self_flex_end(self) -> Self
Source§fn self_center(self) -> Self
fn self_center(self) -> Self
Source§fn self_baseline(self) -> Self
fn self_baseline(self) -> Self
Source§fn self_stretch(self) -> Self
fn self_stretch(self) -> Self
Source§fn justify_start(self) -> Self
fn justify_start(self) -> Self
Source§fn justify_end(self) -> Self
fn justify_end(self) -> Self
Source§fn justify_center(self) -> Self
fn justify_center(self) -> Self
Source§fn justify_between(self) -> Self
fn justify_between(self) -> Self
Source§fn justify_around(self) -> Self
fn justify_around(self) -> Self
Source§fn justify_evenly(self) -> Self
fn justify_evenly(self) -> Self
Source§fn content_normal(self) -> Self
fn content_normal(self) -> Self
Source§fn content_center(self) -> Self
fn content_center(self) -> Self
Source§fn content_start(self) -> Self
fn content_start(self) -> Self
Source§fn content_end(self) -> Self
fn content_end(self) -> Self
Source§fn content_between(self) -> Self
fn content_between(self) -> Self
Source§fn content_around(self) -> Self
fn content_around(self) -> Self
Source§fn content_evenly(self) -> Self
fn content_evenly(self) -> Self
Source§fn content_stretch(self) -> Self
fn content_stretch(self) -> Self
Source§fn aspect_ratio(self, ratio: f32) -> Self
fn aspect_ratio(self, ratio: f32) -> Self
Source§fn aspect_square(self) -> Self
fn aspect_square(self) -> Self
Source§fn border_dashed(self) -> Self
fn border_dashed(self) -> Self
Source§fn text_style(&mut self) -> &mut TextStyleRefinement
fn text_style(&mut self) -> &mut TextStyleRefinement
Source§fn text_color(self, color: impl Into<Hsla>) -> Self
fn text_color(self, color: impl Into<Hsla>) -> Self
Source§fn font_weight(self, weight: FontWeight) -> Self
fn font_weight(self, weight: FontWeight) -> Self
Source§fn text_bg(self, bg: impl Into<Hsla>) -> Self
fn text_bg(self, bg: impl Into<Hsla>) -> Self
Source§fn text_size(self, size: impl Into<AbsoluteLength>) -> Self
fn text_size(self, size: impl Into<AbsoluteLength>) -> Self
Source§fn not_italic(self) -> Self
fn not_italic(self) -> Self
Source§fn line_through(self) -> Self
fn line_through(self) -> Self
Source§fn text_decoration_none(self) -> Self
fn text_decoration_none(self) -> Self
Source§fn text_decoration_color(self, color: impl Into<Hsla>) -> Self
fn text_decoration_color(self, color: impl Into<Hsla>) -> Self
Source§fn text_decoration_solid(self) -> Self
fn text_decoration_solid(self) -> Self
Source§fn text_decoration_wavy(self) -> Self
fn text_decoration_wavy(self) -> Self
Source§fn text_decoration_0(self) -> Self
fn text_decoration_0(self) -> Self
Source§fn text_decoration_1(self) -> Self
fn text_decoration_1(self) -> Self
Source§fn text_decoration_2(self) -> Self
fn text_decoration_2(self) -> Self
Source§fn text_decoration_4(self) -> Self
fn text_decoration_4(self) -> Self
Source§fn text_decoration_8(self) -> Self
fn text_decoration_8(self) -> Self
Source§fn font_family(self, family_name: impl Into<SharedString>) -> Self
fn font_family(self, family_name: impl Into<SharedString>) -> Self
Source§fn font_features(self, features: FontFeatures) -> Self
fn font_features(self, features: FontFeatures) -> Self
Source§fn line_height(self, line_height: impl Into<DefiniteLength>) -> Self
fn line_height(self, line_height: impl Into<DefiniteLength>) -> Self
Source§fn grid_cols_min_content(self, cols: u16) -> Self
fn grid_cols_min_content(self, cols: u16) -> Self
Source§fn grid_cols_max_content(self, cols: u16) -> Self
fn grid_cols_max_content(self, cols: u16) -> Self
Source§fn col_start_auto(self) -> Self
fn col_start_auto(self) -> Self
Source§fn col_end_auto(self) -> Self
fn col_end_auto(self) -> Self
Source§fn col_span_full(self) -> Self
fn col_span_full(self) -> Self
Source§fn row_start_auto(self) -> Self
fn row_start_auto(self) -> Self
Source§fn row_end_auto(self) -> Self
fn row_end_auto(self) -> Self
Source§fn row_span_full(self) -> Self
fn row_span_full(self) -> Self
Source§fn debug_below(self) -> Self
fn debug_below(self) -> Self
Auto Trait Implementations§
impl Freeze for Div
impl !RefUnwindSafe for Div
impl !Send for Div
impl !Sync for Div
impl Unpin for Div
impl UnsafeUnpin for Div
impl !UnwindSafe for Div
Blanket Implementations§
Source§impl<E> AnimationExt for Ewhere
E: IntoElement + 'static,
impl<E> AnimationExt for Ewhere
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,
fn with_animation(
self,
id: impl Into<ElementId>,
animation: Animation,
animator: impl Fn(Self, f32) -> Self + 'static,
) -> AnimationElement<Self>where
Self: Sized,
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
Source§impl<T> FluentBuilder for Twhere
T: IntoElement,
impl<T> FluentBuilder for Twhere
T: IntoElement,
Source§fn map<U>(self, f: impl FnOnce(Self) -> U) -> Uwhere
Self: Sized,
fn map<U>(self, f: impl FnOnce(Self) -> U) -> Uwhere
Self: Sized,
Source§fn when(self, condition: bool, then: impl FnOnce(Self) -> Self) -> Selfwhere
Self: Sized,
fn when(self, condition: bool, then: impl FnOnce(Self) -> Self) -> Selfwhere
Self: Sized,
Source§fn when_else(
self,
condition: bool,
then: impl FnOnce(Self) -> Self,
else_fn: impl FnOnce(Self) -> Self,
) -> Selfwhere
Self: Sized,
fn when_else(
self,
condition: bool,
then: impl FnOnce(Self) -> Self,
else_fn: impl FnOnce(Self) -> Self,
) -> Selfwhere
Self: Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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