Struct TaffyStyloStyle

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

Source

pub fn new(style: T, is_compressible_replaced: bool) -> Self

Trait Implementations§

Source§

impl<T: Deref<Target = ComputedValues>> CoreStyle for TaffyStyloStyle<T>

Source§

type CustomIdent = Atom<AtomStaticSet>

The type of custom identifiers used to identify named grid lines and areas
Source§

fn box_generation_mode(&self) -> BoxGenerationMode

Which box generation mode should be used
Source§

fn is_block(&self) -> bool

Is block layout?
Source§

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

Which box do size styles apply to
Source§

fn overflow(&self) -> Point<Overflow>

How children overflowing their container should affect layout
Source§

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

What should the position value of this struct use as a base offset?
Source§

fn inset(&self) -> Rect<LengthPercentageAuto>

How should the position of this element be tweaked relative to the layout defined?
Source§

fn size(&self) -> Size<Dimension>

Sets the initial size of the item
Source§

fn min_size(&self) -> Size<Dimension>

Controls the minimum size of the item
Source§

fn max_size(&self) -> Size<Dimension>

Controls the maximum size of the item
Source§

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>

How large should the margin be on each side?
Source§

fn padding(&self) -> Rect<LengthPercentage>

How large should the padding be on each side?
Source§

fn border(&self) -> Rect<LengthPercentage>

How large should the border be on each side?
Source§

impl<T: Deref<Target = ComputedValues>> GridContainerStyle for TaffyStyloStyle<T>

Source§

type Repetition<'a> = RepetitionWrapper<'a> where Self: 'a

The type for a repeat() within a grid_template_rows or grid_template_columns
Source§

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

The type returned by grid_auto_rows and grid_auto_columns
Source§

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

The type of custom identifiers used to identify named grid lines and areas
Source§

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

Defines the track sizing functions (widths) of the grid columns
Source§

fn grid_auto_rows(&self) -> Self::AutoTrackList<'_>

Defines the size of implicitly created rows
Source§

fn grid_auto_columns(&self) -> Self::AutoTrackList<'_>

Defined the size of implicitly created columns
Source§

fn grid_template_areas(&self) -> Option<Self::GridTemplateAreas<'_>>

Named grid areas
Source§

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

Defines the size of implicitly created rows
Source§

fn grid_auto_flow(&self) -> GridAutoFlow

Controls how items get placed into the grid for auto-placed items
Source§

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>

How should content contained within this item be aligned in the cross/block axis
Source§

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>

How this node’s children aligned in the cross/block axis?
Source§

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

Get a grid item’s row or column placement depending on the axis passed
Source§

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>

Source§

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

Defines which column in the grid the item should start and end at
Source§

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 set
Source§

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 set
Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsVoidPtr for T

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> Filterable for T

Source§

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> MaybeBoxed<Box<T>> for T

Source§

fn maybe_boxed(self) -> Box<T>

Convert
Source§

impl<T> MaybeBoxed<T> for T

Source§

fn maybe_boxed(self) -> T

Convert
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

type Error = <U as TryFrom<T>>::Error

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

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,