pub struct MeasureContext<'a, Key, L, D>{
pub layout: &'a mut Torin<Key>,
pub measurer: &'a mut Option<L>,
pub dom_adapter: &'a mut D,
pub layout_metadata: LayoutMetadata,
}
Fields§
§layout: &'a mut Torin<Key>
§measurer: &'a mut Option<L>
§dom_adapter: &'a mut D
§layout_metadata: LayoutMetadata
Implementations§
Source§impl<Key, L, D> MeasureContext<'_, Key, L, D>
impl<Key, L, D> MeasureContext<'_, Key, L, D>
Sourcepub fn measure_node(
&mut self,
node_id: Key,
node: &Node,
parent_area: &Area,
available_parent_area: &Area,
must_cache_children: bool,
parent_is_dirty: bool,
phase: Phase,
) -> (bool, LayoutNode)
pub fn measure_node( &mut self, node_id: Key, node: &Node, parent_area: &Area, available_parent_area: &Area, must_cache_children: bool, parent_is_dirty: bool, phase: Phase, ) -> (bool, LayoutNode)
Measure a Node.
Auto Trait Implementations§
impl<'a, Key, L, D> Freeze for MeasureContext<'a, Key, L, D>
impl<'a, Key, L, D> !RefUnwindSafe for MeasureContext<'a, Key, L, D>
impl<'a, Key, L, D> Send for MeasureContext<'a, Key, L, D>
impl<'a, Key, L, D> Sync for MeasureContext<'a, Key, L, D>
impl<'a, Key, L, D> Unpin for MeasureContext<'a, Key, L, D>
impl<'a, Key, L, D> !UnwindSafe for MeasureContext<'a, Key, L, D>
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