#[repr(C)]pub struct DWRITE_GLYPH_RUN {
pub fontFace: *mut IDWriteFontFace,
pub fontEmSize: FLOAT,
pub glyphCount: UINT32,
pub glyphIndices: *const UINT16,
pub glyphAdvances: *const FLOAT,
pub glyphOffsets: *const DWRITE_GLYPH_OFFSET,
pub isSideways: BOOL,
pub bidiLevel: UINT32,
}
Fields§
§fontFace: *mut IDWriteFontFace
§fontEmSize: FLOAT
§glyphCount: UINT32
§glyphIndices: *const UINT16
§glyphAdvances: *const FLOAT
§glyphOffsets: *const DWRITE_GLYPH_OFFSET
§isSideways: BOOL
§bidiLevel: UINT32
Trait Implementations§
Source§impl Clone for DWRITE_GLYPH_RUN
impl Clone for DWRITE_GLYPH_RUN
Source§fn clone(&self) -> DWRITE_GLYPH_RUN
fn clone(&self) -> DWRITE_GLYPH_RUN
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DWRITE_GLYPH_RUN
impl Default for DWRITE_GLYPH_RUN
Source§fn default() -> DWRITE_GLYPH_RUN
fn default() -> DWRITE_GLYPH_RUN
Returns the “default value” for a type. Read more
impl Copy for DWRITE_GLYPH_RUN
Auto Trait Implementations§
impl Freeze for DWRITE_GLYPH_RUN
impl RefUnwindSafe for DWRITE_GLYPH_RUN
impl !Send for DWRITE_GLYPH_RUN
impl !Sync for DWRITE_GLYPH_RUN
impl Unpin for DWRITE_GLYPH_RUN
impl UnwindSafe for DWRITE_GLYPH_RUN
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