pub type FT_Glyph_Metrics = FT_Glyph_Metrics_;

Aliased Type§

struct FT_Glyph_Metrics {
    pub width: i64,
    pub height: i64,
    pub horiBearingX: i64,
    pub horiBearingY: i64,
    pub horiAdvance: i64,
    pub vertBearingX: i64,
    pub vertBearingY: i64,
    pub vertAdvance: i64,
}

Fields§

§width: i64§height: i64§horiBearingX: i64§horiBearingY: i64§horiAdvance: i64§vertBearingX: i64§vertBearingY: i64§vertAdvance: i64

Trait Implementations§

source§

impl Clone for FT_Glyph_Metrics_

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for FT_Glyph_Metrics_

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for FT_Glyph_Metrics_