pub struct LayoutContext<'a> {
pub node_id: NodeId,
pub torin_node: &'a Node,
pub area_size: &'a Size2D,
pub font_collection: &'a FontCollection,
pub font_manager: &'a FontMgr,
pub text_style_state: &'a TextStyleState,
pub fallback_fonts: &'a [Cow<'static, str>],
pub scale_factor: f64,
pub text_cache: &'a mut TextCache,
}Fields§
§node_id: NodeId§torin_node: &'a Node§area_size: &'a Size2D§font_collection: &'a FontCollection§font_manager: &'a FontMgr§text_style_state: &'a TextStyleState§fallback_fonts: &'a [Cow<'static, str>]§scale_factor: f64§text_cache: &'a mut TextCacheAuto Trait Implementations§
impl<'a> Freeze for LayoutContext<'a>
impl<'a> !RefUnwindSafe for LayoutContext<'a>
impl<'a> !Send for LayoutContext<'a>
impl<'a> !Sync for LayoutContext<'a>
impl<'a> Unpin for LayoutContext<'a>
impl<'a> !UnwindSafe for LayoutContext<'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