pub struct TaffyStyloStyle<T: Deref<Target = ComputedValues>> {
pub style: T,
pub is_compressible_replaced: bool,
}
Expand description
A wrapper struct for anything that Deref’s to a ComputedValues
, which
implements Taffy’s layout traits and can used with Taffy’s layout algorithms.
Fields§
§style: T
§is_compressible_replaced: bool
Implementations§
Source§impl<T: Deref<Target = ComputedValues>> TaffyStyloStyle<T>
impl<T: Deref<Target = ComputedValues>> TaffyStyloStyle<T>
Trait Implementations§
Source§impl<T: Deref<Target = ComputedValues>> CoreStyle for TaffyStyloStyle<T>
impl<T: Deref<Target = ComputedValues>> CoreStyle for TaffyStyloStyle<T>
Source§type CustomIdent = Atom<AtomStaticSet>
type CustomIdent = Atom<AtomStaticSet>
The type of custom identifiers used to identify named grid lines and areas
Source§fn box_generation_mode(&self) -> BoxGenerationMode
fn box_generation_mode(&self) -> BoxGenerationMode
Which box generation mode should be used
Source§fn is_compressible_replaced(&self) -> bool
fn is_compressible_replaced(&self) -> bool
Is it a compressible replaced element?
https://drafts.csswg.org/css-sizing-3/#min-content-zero
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>> GridContainerStyle for TaffyStyloStyle<T>
impl<T: Deref<Target = ComputedValues>> GridContainerStyle for TaffyStyloStyle<T>
Source§type Repetition<'a> = RepetitionWrapper<'a>
where
Self: 'a
type Repetition<'a> = RepetitionWrapper<'a> where Self: 'a
The type for a
repeat()
within a grid_template_rows or grid_template_columnsSource§type TemplateTrackList<'a> = Map<Iter<'a, GenericTrackListValue<LengthPercentage, i32>>, fn(&'a GenericTrackListValue<LengthPercentage, i32>) -> GenericGridTemplateComponent<Atom<AtomStaticSet>, RepetitionWrapper<'a>>>
where
Self: 'a
type TemplateTrackList<'a> = Map<Iter<'a, GenericTrackListValue<LengthPercentage, i32>>, fn(&'a GenericTrackListValue<LengthPercentage, i32>) -> GenericGridTemplateComponent<Atom<AtomStaticSet>, RepetitionWrapper<'a>>> where Self: 'a
The type returned by grid_template_rows and grid_template_columns
Source§type AutoTrackList<'a> = Map<Iter<'a, GenericTrackSize<LengthPercentage>>, for<'c> fn(&'c GenericTrackSize<LengthPercentage>) -> MinMax<MinTrackSizingFunction, MaxTrackSizingFunction>>
where
Self: 'a
type AutoTrackList<'a> = Map<Iter<'a, GenericTrackSize<LengthPercentage>>, for<'c> fn(&'c GenericTrackSize<LengthPercentage>) -> MinMax<MinTrackSizingFunction, MaxTrackSizingFunction>> where Self: 'a
The type returned by grid_auto_rows and grid_auto_columns
Source§type TemplateLineNames<'a> = StyloLineNameIter<'a>
where
Self: 'a
type TemplateLineNames<'a> = StyloLineNameIter<'a> where Self: 'a
The type returned by grid_template_row_names and grid_template_column_names
Source§type GridTemplateAreas<'a> = Map<Iter<'a, NamedArea>, for<'c> fn(&'c NamedArea) -> GridTemplateArea<Atom<AtomStaticSet>>>
where
Self: 'a
type GridTemplateAreas<'a> = Map<Iter<'a, NamedArea>, for<'c> fn(&'c NamedArea) -> GridTemplateArea<Atom<AtomStaticSet>>> where Self: 'a
The type of custom identifiers used to identify named grid lines and areas
Source§fn grid_template_rows(&self) -> Option<Self::TemplateTrackList<'_>>
fn grid_template_rows(&self) -> Option<Self::TemplateTrackList<'_>>
Defines the track sizing functions (heights) of the grid rows
Source§fn grid_template_columns(&self) -> Option<Self::TemplateTrackList<'_>>
fn grid_template_columns(&self) -> Option<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_template_areas(&self) -> Option<Self::GridTemplateAreas<'_>>
fn grid_template_areas(&self) -> Option<Self::GridTemplateAreas<'_>>
Named grid areas
Source§fn grid_template_column_names(&self) -> Option<Self::TemplateLineNames<'_>>
fn grid_template_column_names(&self) -> Option<Self::TemplateLineNames<'_>>
Defines the line names for row lines
Source§fn grid_template_row_names(&self) -> Option<Self::TemplateLineNames<'_>>
fn grid_template_row_names(&self) -> Option<Self::TemplateLineNames<'_>>
Defines the size of implicitly created rows
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,
) -> Option<Self::TemplateTrackList<'_>>
fn grid_template_tracks( &self, axis: AbsoluteAxis, ) -> Option<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<Atom>>
fn grid_row(&self) -> Line<GridPlacement<Atom>>
Defines which row in the grid the item should start and end at
Source§fn grid_column(&self) -> Line<GridPlacement<Atom>>
fn grid_column(&self) -> Line<GridPlacement<Atom>>
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<GridPlacement<Self::CustomIdent>>
fn grid_placement( &self, axis: AbsoluteAxis, ) -> Line<GridPlacement<Self::CustomIdent>>
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> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. 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