Struct freya_testing::Layers
pub struct Layers {
pub layers: HashMap<i16, Vec<EntityId>, BuildHasherDefault<FxHasher>>,
pub paragraph_elements: HashMap<Uuid, Vec<EntityId>, BuildHasherDefault<FxHasher>>,
}
Fields§
§layers: HashMap<i16, Vec<EntityId>, BuildHasherDefault<FxHasher>>
§paragraph_elements: HashMap<Uuid, Vec<EntityId>, BuildHasherDefault<FxHasher>>
Implementations§
§impl Layers
impl Layers
pub fn new( rdom: &RealDom<CustomAttributeValues>, layout: &Torin<EntityId>, font_collection: &RCHandle<skia_textlayout_FontCollection>, scale_factor: f32 ) -> Layers
pub fn layers(&self) -> IntoIter<(&i16, &Vec<EntityId>)>
pub fn len_paragraph_elements(&self) -> usize
pub fn len_layers(&self) -> usize
pub fn measure_all_paragraph_elements(
&self,
rdom: &RealDom<CustomAttributeValues>,
layout: &Torin<EntityId>,
font_collection: &RCHandle<skia_textlayout_FontCollection>,
scale_factor: f32
)
pub fn measure_all_paragraph_elements( &self, rdom: &RealDom<CustomAttributeValues>, layout: &Torin<EntityId>, font_collection: &RCHandle<skia_textlayout_FontCollection>, scale_factor: f32 )
Measure all the paragraphs
pub fn measure_paragraph_elements(
&self,
text_id: &Uuid,
dom: &FreyaDOM,
font_collection: &RCHandle<skia_textlayout_FontCollection>,
scale_factor: f32
)
pub fn measure_paragraph_elements( &self, text_id: &Uuid, dom: &FreyaDOM, font_collection: &RCHandle<skia_textlayout_FontCollection>, scale_factor: f32 )
Measure all the paragraphs registered under the given TextId
pub 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
pub fn add_element(&mut self, node_id: EntityId, node_layer: i16)
pub fn add_element(&mut self, node_id: EntityId, 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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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.