pub struct Glyph {
pub left: i8,
pub right: i8,
pub strokes: &'static [PackedPoint],
}Expand description
A single glyph (character) contained within a font.
Fields§
§left: i8Left coordinate boundary of this glyph
right: i8Right coordinate boundary of this glyph
strokes: &'static [PackedPoint]Series of points which make up this glyph
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Glyph
impl RefUnwindSafe for Glyph
impl Send for Glyph
impl Sync for Glyph
impl Unpin for Glyph
impl UnsafeUnpin for Glyph
impl UnwindSafe for Glyph
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