pub struct PostMeasureContext<'a> {
pub node_layout: &'a LayoutNode,
pub children: &'a [NodeId],
pub layout: &'a Torin<NodeId>,
pub font_collection: &'a mut FontCollection,
pub text_style_state: &'a TextStyleState,
pub fallback_fonts: &'a [Cow<'static, str>],
pub scale_factor: f64,
}Fields§
§node_layout: &'a LayoutNode§children: &'a [NodeId]§layout: &'a Torin<NodeId>§font_collection: &'a mut FontCollection§text_style_state: &'a TextStyleState§fallback_fonts: &'a [Cow<'static, str>]§scale_factor: f64Auto Trait Implementations§
impl<'a> Freeze for PostMeasureContext<'a>
impl<'a> !RefUnwindSafe for PostMeasureContext<'a>
impl<'a> !Send for PostMeasureContext<'a>
impl<'a> !Sync for PostMeasureContext<'a>
impl<'a> Unpin for PostMeasureContext<'a>
impl<'a> UnsafeUnpin for PostMeasureContext<'a>
impl<'a> !UnwindSafe for PostMeasureContext<'a>
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