[][src]Struct ndless_freetype::glyph_slot::SubGlyphInfo

pub struct SubGlyphInfo {
    pub index: i32,
    pub flags: u32,
    pub arg1: i32,
    pub arg2: i32,
    pub transfrom: FT_Matrix,
}

A description of a given subglyph returned by GlyphSlot::get_subglyph_info function.

Fields

index: i32

The glyph index of the subglyph.

flags: u32

The subglyph flags, see FT_SUBGLYPH_FLAG_XXX.

arg1: i32

The subglyph's first argument (if any).

arg2: i32

The subglyph's second argument (if any).

transfrom: FT_Matrix

The subglyph transformation (if any).

Trait Implementations

impl Copy for SubGlyphInfo[src]

impl Clone for SubGlyphInfo[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for SubGlyphInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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

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

type Owned = T