pub struct PreparedGlyph<'a> {
pub glyph_type: GlyphType<'a>,
pub transform: Affine,
}Expand description
A simplified representation of a glyph, prepared for easy rendering.
Fields§
§glyph_type: GlyphType<'a>The type of glyph.
transform: AffineThe global transform of the glyph.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PreparedGlyph<'a>
impl<'a> RefUnwindSafe for PreparedGlyph<'a>
impl<'a> Send for PreparedGlyph<'a>
impl<'a> Sync for PreparedGlyph<'a>
impl<'a> Unpin for PreparedGlyph<'a>
impl<'a> UnwindSafe for PreparedGlyph<'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