[][src]Struct rustybuzz::GlyphPosition

#[repr(C)]pub struct GlyphPosition {
    pub x_advance: i32,
    pub y_advance: i32,
    pub x_offset: i32,
    pub y_offset: i32,
    // some fields omitted
}

Holds the positions of the glyph in both horizontal and vertical directions.

All positions are relative to the current point.

Fields

x_advance: i32

How much the line advances after drawing this glyph when setting text in horizontal direction.

y_advance: i32

How much the line advances after drawing this glyph when setting text in vertical direction.

x_offset: i32

How much the glyph moves on the X-axis before drawing it, this should not affect how much the line advances.

y_offset: i32

How much the glyph moves on the Y-axis before drawing it, this should not affect how much the line advances.

Trait Implementations

impl Clone for GlyphPosition[src]

impl Copy for GlyphPosition[src]

impl Debug for GlyphPosition[src]

impl Default for GlyphPosition[src]

impl Pod for GlyphPosition[src]

impl Zeroable for GlyphPosition[src]

Auto Trait Implementations

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.