logo
pub struct BitmapMetrics {
    pub origin_offset_x: i16,
    pub origin_offset_y: i16,
    pub advance: u8,
    pub ascender: i8,
    pub descender: i8,
}
Expand description

The actual embedded bitmap glyph metrics in pixels.

Fields

origin_offset_x: i16

Distance in pixels from the horizontal origin to the left edge of the bitmap.

origin_offset_y: i16

Distance in pixels from the horizontal origin to the bottom edge of the bitmap.

advance: u8

Advance width in pixels.

ascender: i8

The spacing of the line before the baseline in pixels.

descender: i8

The spacing of the line after the baseline in pixels.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.