pub(super) struct SimpleGlyph<'a, C: PointCoord> {
pub points: &'a [Point<C>],
pub flags: &'a mut [PointFlags],
pub contours: &'a [u16],
}
Fields§
§points: &'a [Point<C>]
§flags: &'a mut [PointFlags]
§contours: &'a [u16]
Auto Trait Implementations§
impl<'a, C> Freeze for SimpleGlyph<'a, C>
impl<'a, C> RefUnwindSafe for SimpleGlyph<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for SimpleGlyph<'a, C>where
C: Sync,
impl<'a, C> Sync for SimpleGlyph<'a, C>where
C: Sync,
impl<'a, C> Unpin for SimpleGlyph<'a, C>
impl<'a, C> !UnwindSafe for SimpleGlyph<'a, C>
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