struct PreparedGlyphRun<'a> {
transform: Affine,
size: Size,
normalized_coords: &'a [NormalizedCoord],
hinting_instance: Option<&'a HintingInstance>,
}Fields§
§transform: AffineThe total transform (global_transform * glyph_transform), not accounting for glyph
translation.
size: SizeThe font size to generate glyph outlines for.
normalized_coords: &'a [NormalizedCoord]§hinting_instance: Option<&'a HintingInstance>Auto Trait Implementations§
impl<'a> Freeze for PreparedGlyphRun<'a>
impl<'a> RefUnwindSafe for PreparedGlyphRun<'a>
impl<'a> Send for PreparedGlyphRun<'a>
impl<'a> Sync for PreparedGlyphRun<'a>
impl<'a> Unpin for PreparedGlyphRun<'a>
impl<'a> UnwindSafe for PreparedGlyphRun<'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