Struct freetype::glyph_slot::SubGlyphInfo [] [src]

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

The glyph index of the subglyph.

flags

The subglyph flags, see FT_SUBGLYPH_FLAG_XXX.

arg1

The subglyph's first argument (if any).

arg2

The subglyph's second argument (if any).

transfrom

The subglyph transformation (if any).

Trait Implementations

impl Default for SubGlyphInfo

fn default() -> Self

Derived Implementations

impl Clone for SubGlyphInfo

fn clone(&self) -> SubGlyphInfo

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

impl Copy for SubGlyphInfo