pub struct MeasureContext<'a, Key, L, D>{
pub layout: &'a mut Torin<Key>,
pub measurer: &'a mut Option<L>,
pub tree_adapter: &'a mut D,
pub layout_metadata: LayoutMetadata,
}Fields§
§layout: &'a mut Torin<Key>§measurer: &'a mut Option<L>§tree_adapter: &'a mut D§layout_metadata: LayoutMetadataImplementations§
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: AreaOf<Parent>,
available_parent_area: AreaOf<Available>,
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: AreaOf<Parent>, available_parent_area: AreaOf<Available>, must_cache_children: bool, parent_is_dirty: bool, phase: Phase, ) -> (bool, LayoutNode)
Measure a Node and all its children.
Sourcepub fn measure_children(
&mut self,
parent_node_id: &Key,
parent_node: &Node,
parent_area: &mut AreaOf<Parent>,
inner_area: &mut AreaOf<Inner>,
available_area: &mut AreaOf<Available>,
inner_sizes: &mut Size2D,
must_cache_children: bool,
parent_is_dirty: bool,
)
pub fn measure_children( &mut self, parent_node_id: &Key, parent_node: &Node, parent_area: &mut AreaOf<Parent>, inner_area: &mut AreaOf<Inner>, available_area: &mut AreaOf<Available>, inner_sizes: &mut Size2D, must_cache_children: bool, parent_is_dirty: bool, )
Measure the children layouts of 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
§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>
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