pub struct PositionedGlyph<Length> {
pub x: Length,
pub y: Length,
pub advance: Length,
pub glyph_id: NonZeroU16,
pub text_byte_offset: usize,
}Fields§
§x: Length§y: Length§advance: Length§glyph_id: NonZeroU16§text_byte_offset: usizeAuto Trait Implementations§
impl<Length> Freeze for PositionedGlyph<Length>where
Length: Freeze,
impl<Length> RefUnwindSafe for PositionedGlyph<Length>where
Length: RefUnwindSafe,
impl<Length> Send for PositionedGlyph<Length>where
Length: Send,
impl<Length> Sync for PositionedGlyph<Length>where
Length: Sync,
impl<Length> Unpin for PositionedGlyph<Length>where
Length: Unpin,
impl<Length> UnwindSafe for PositionedGlyph<Length>where
Length: UnwindSafe,
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