Struct layout_2020::taffy::stylo_taffy::wrapper::TaffyStyloStyle
source · pub struct TaffyStyloStyle<T: Deref<Target = ComputedValues>>(pub T);
Expand description
A wrapper struct for anything that Deref’s to a [stylo::ComputedValues
], which
implements Taffy’s layout traits and can used with Taffy’s layout algorithms.
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T: Deref<Target = ComputedValues>> CoreStyle for TaffyStyloStyle<T>
impl<T: Deref<Target = ComputedValues>> CoreStyle for TaffyStyloStyle<T>
source§fn box_generation_mode(&self) -> BoxGenerationMode
fn box_generation_mode(&self) -> BoxGenerationMode
Which box generation mode should be used
source§fn box_sizing(&self) -> BoxSizing
fn box_sizing(&self) -> BoxSizing
Which box do size styles apply to
source§fn overflow(&self) -> Point<Overflow>
fn overflow(&self) -> Point<Overflow>
How children overflowing their container should affect layout
source§fn scrollbar_width(&self) -> f32
fn scrollbar_width(&self) -> f32
How much space (in points) should be reserved for the scrollbars of
Overflow::Scroll
and Overflow::Auto
nodes.source§fn position(&self) -> Position
fn position(&self) -> Position
What should the
position
value of this struct use as a base offset?source§fn inset(&self) -> Rect<LengthPercentageAuto>
fn inset(&self) -> Rect<LengthPercentageAuto>
How should the position of this element be tweaked relative to the layout defined?
source§fn aspect_ratio(&self) -> Option<f32>
fn aspect_ratio(&self) -> Option<f32>
Sets the preferred aspect ratio for the item
The ratio is calculated as width divided by height.
source§fn margin(&self) -> Rect<LengthPercentageAuto>
fn margin(&self) -> Rect<LengthPercentageAuto>
How large should the margin be on each side?
source§fn padding(&self) -> Rect<LengthPercentage>
fn padding(&self) -> Rect<LengthPercentage>
How large should the padding be on each side?
source§fn border(&self) -> Rect<LengthPercentage>
fn border(&self) -> Rect<LengthPercentage>
How large should the border be on each side?
source§impl<T: Deref<Target = ComputedValues>> From<T> for TaffyStyloStyle<T>
impl<T: Deref<Target = ComputedValues>> From<T> for TaffyStyloStyle<T>
source§impl<T: Deref<Target = ComputedValues>> GridContainerStyle for TaffyStyloStyle<T>
impl<T: Deref<Target = ComputedValues>> GridContainerStyle for TaffyStyloStyle<T>
source§type TemplateTrackList<'a> = Vec<TrackSizingFunction>
where
Self: 'a
type TemplateTrackList<'a> = Vec<TrackSizingFunction> where Self: 'a
The type returned by grid_template_rows and grid_template_columns
source§type AutoTrackList<'a> = Vec<MinMax<MinTrackSizingFunction, MaxTrackSizingFunction>>
where
Self: 'a
type AutoTrackList<'a> = Vec<MinMax<MinTrackSizingFunction, MaxTrackSizingFunction>> where Self: 'a
The type returned by grid_auto_rows and grid_auto_columns
source§fn grid_template_rows(&self) -> Self::TemplateTrackList<'_>
fn grid_template_rows(&self) -> Self::TemplateTrackList<'_>
Defines the track sizing functions (heights) of the grid rows
source§fn grid_template_columns(&self) -> Self::TemplateTrackList<'_>
fn grid_template_columns(&self) -> Self::TemplateTrackList<'_>
Defines the track sizing functions (widths) of the grid columns
source§fn grid_auto_rows(&self) -> Self::AutoTrackList<'_>
fn grid_auto_rows(&self) -> Self::AutoTrackList<'_>
Defines the size of implicitly created rows
source§fn grid_auto_columns(&self) -> Self::AutoTrackList<'_>
fn grid_auto_columns(&self) -> Self::AutoTrackList<'_>
Defined the size of implicitly created columns
source§fn grid_auto_flow(&self) -> GridAutoFlow
fn grid_auto_flow(&self) -> GridAutoFlow
Controls how items get placed into the grid for auto-placed items
source§fn gap(&self) -> Size<LengthPercentage>
fn gap(&self) -> Size<LengthPercentage>
How large should the gaps between items in a grid or flex container be?
source§fn align_content(&self) -> Option<AlignContent>
fn align_content(&self) -> Option<AlignContent>
How should content contained within this item be aligned in the cross/block axis
source§fn justify_content(&self) -> Option<JustifyContent>
fn justify_content(&self) -> Option<JustifyContent>
How should contained within this item be aligned in the main/inline axis
source§fn align_items(&self) -> Option<AlignItems>
fn align_items(&self) -> Option<AlignItems>
How this node’s children aligned in the cross/block axis?
source§fn justify_items(&self) -> Option<AlignItems>
fn justify_items(&self) -> Option<AlignItems>
How this node’s children should be aligned in the inline axis
source§fn grid_template_tracks(
&self,
axis: AbsoluteAxis,
) -> Self::TemplateTrackList<'_>
fn grid_template_tracks( &self, axis: AbsoluteAxis, ) -> Self::TemplateTrackList<'_>
Get a grid item’s row or column placement depending on the axis passed
source§fn grid_align_content(&self, axis: AbstractAxis) -> AlignContent
fn grid_align_content(&self, axis: AbstractAxis) -> AlignContent
Get a grid container’s align-content or justify-content alignment depending on the axis passed
source§impl<T: Deref<Target = ComputedValues>> GridItemStyle for TaffyStyloStyle<T>
impl<T: Deref<Target = ComputedValues>> GridItemStyle for TaffyStyloStyle<T>
source§fn grid_row(&self) -> Line<GridPlacement>
fn grid_row(&self) -> Line<GridPlacement>
Defines which row in the grid the item should start and end at
source§fn grid_column(&self) -> Line<GridPlacement>
fn grid_column(&self) -> Line<GridPlacement>
Defines which column in the grid the item should start and end at
source§fn align_self(&self) -> Option<AlignSelf>
fn align_self(&self) -> Option<AlignSelf>
How this node should be aligned in the cross/block axis
Falls back to the parents
AlignItems
if not setsource§fn justify_self(&self) -> Option<AlignSelf>
fn justify_self(&self) -> Option<AlignSelf>
How this node should be aligned in the inline axis
Falls back to the parents
super::JustifyItems
if not setsource§fn grid_placement(
&self,
axis: AbsoluteAxis,
) -> Line<GenericGridPlacement<GridLine>>
fn grid_placement( &self, axis: AbsoluteAxis, ) -> Line<GenericGridPlacement<GridLine>>
Get a grid item’s row or column placement depending on the axis passed
Auto Trait Implementations§
impl<T> Freeze for TaffyStyloStyle<T>where
T: Freeze,
impl<T> RefUnwindSafe for TaffyStyloStyle<T>where
T: RefUnwindSafe,
impl<T> Send for TaffyStyloStyle<T>where
T: Send,
impl<T> Sync for TaffyStyloStyle<T>where
T: Sync,
impl<T> Unpin for TaffyStyloStyle<T>where
T: Unpin,
impl<T> UnwindSafe for TaffyStyloStyle<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read 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>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert