Struct flo_canvas::FontMetrics[][src]

pub struct FontMetrics {
    pub em_size: f32,
    pub ascender: f32,
    pub descender: f32,
    pub height: f32,
    pub line_gap: f32,
    pub capital_height: Option<f32>,
    pub underline_position: Option<FontLinePosition>,
    pub strikeout_position: Option<FontLinePosition>,
}
Expand description

Metrics for a font

Fields

em_size: f32

Size of an em relative to these metrics

ascender: f32

The ascender size for the font

descender: f32

The descender size for the font

height: f32

The height for the font

line_gap: f32

The line gap for the font

capital_height: Option<f32>

The capital height for the font, if specified

underline_position: Option<FontLinePosition>

Offset from the baseline and suggested thickness for an underline (can be None if the font does not specify)

strikeout_position: Option<FontLinePosition>

Offset from the baseline and suggested thickness for a strikeout effect

Implementations

Returns the metrics adjusted to a new em size

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. 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

Performs the conversion.

Performs the conversion.

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)

recently added

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.