Struct freya_layout::Layers
source · 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 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> 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>
§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.