pub struct LineMetrics {
    pub ascent: f32,
    pub descent: f32,
    pub line_gap: f32,
    pub new_line_size: f32,
}
Expand description

Metrics associated with line positioning.

Fields

ascent: f32

The highest point that any glyph in the font extends to above the baseline. Typically positive.

descent: f32

The lowest point that any glyph in the font extends to below the baseline. Typically negative.

line_gap: f32

The gap to leave between the descent of one line and the ascent of the next. This is of course only a guideline given by the font’s designers.

new_line_size: f32

A precalculated value for the height or width of the line depending on if the font is laid out horizontally or vertically. It’s calculated by: ascent - descent + line_gap.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.