struct PreparedGlyphRun<'a> {
transform: Affine,
size: Size,
normalized_coords: &'a [NormalizedCoord],
hinting_instance: Option<HintingInstance>,
}
Fields§
§transform: Affine
The total transform (global_transform * glyph_transform
), not accounting for glyph
translation.
size: Size
The font size to generate glyph outlines for.
normalized_coords: &'a [NormalizedCoord]
§hinting_instance: Option<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