[][src]Struct dxplr::dwrite::GlyphRun

pub struct GlyphRun<'a, 'b, 'c> {
    pub font_face: FontFace,
    pub font_em_size: f32,
    pub glyph_indices: &'a [u16],
    pub glyph_advances: &'b [f32],
    pub glyph_offsets: &'c [GlyphOffset],
    pub is_sideways: bool,
    pub bidi_level: u32,
}

Fields

font_face: FontFacefont_em_size: f32glyph_indices: &'a [u16]glyph_advances: &'b [f32]glyph_offsets: &'c [GlyphOffset]is_sideways: boolbidi_level: u32

Trait Implementations

impl<'a, 'b, 'c> Clone for GlyphRun<'a, 'b, 'c>[src]

impl<'a, 'b, 'c> Debug for GlyphRun<'a, 'b, 'c>[src]

Auto Trait Implementations

impl<'a, 'b, 'c> RefUnwindSafe for GlyphRun<'a, 'b, 'c>

impl<'a, 'b, 'c> Send for GlyphRun<'a, 'b, 'c>

impl<'a, 'b, 'c> Sync for GlyphRun<'a, 'b, 'c>

impl<'a, 'b, 'c> Unpin for GlyphRun<'a, 'b, 'c>

impl<'a, 'b, 'c> UnwindSafe for GlyphRun<'a, 'b, 'c>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.