pub struct Layers {
pub layers: FxHashMap<i16, Vec<NodeId>>,
pub paragraph_elements: FxHashMap<Uuid, Vec<NodeId>>,
}
Fields§
§layers: FxHashMap<i16, Vec<NodeId>>
§paragraph_elements: FxHashMap<Uuid, Vec<NodeId>>
Implementations§
Source§impl Layers
impl Layers
pub fn len_paragraph_elements(&self) -> usize
pub fn len_layers(&self) -> usize
Sourcepub fn measure_all_paragraph_elements(
&self,
rdom: &DioxusDOM,
layout: &Torin<NodeId>,
font_collection: &FontCollection,
scale_factor: f32,
)
pub fn measure_all_paragraph_elements( &self, rdom: &DioxusDOM, layout: &Torin<NodeId>, font_collection: &FontCollection, scale_factor: f32, )
Measure all the paragraphs
Sourcepub fn measure_paragraph_elements(
&self,
text_id: &Uuid,
dom: &FreyaDOM,
font_collection: &FontCollection,
scale_factor: f32,
)
pub fn measure_paragraph_elements( &self, text_id: &Uuid, dom: &FreyaDOM, font_collection: &FontCollection, scale_factor: f32, )
Measure all the paragraphs registered under the given TextId
Sourcepub fn calculate_layer(
relative_layer: i16,
height: i16,
inherited_relative_layer: i16,
) -> (i16, i16)
pub fn calculate_layer( relative_layer: i16, height: i16, inherited_relative_layer: i16, ) -> (i16, i16)
Given the height in the DOM of the Node, it’s inherited layer from it’s parent
and the defined layer via the layer
attribute,
calculate it’s corresponding layer and it’s relative layer for it’s children to inherit
Sourcepub fn add_element(&mut self, node_id: NodeId, node_layer: i16)
pub fn add_element(&mut self, node_id: NodeId, node_layer: i16)
Insert a Node into a layer
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Layers
impl RefUnwindSafe for Layers
impl Send for Layers
impl Sync for Layers
impl Unpin for Layers
impl UnwindSafe for Layers
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more