Struct swash::Metrics

source ·
pub struct Metrics {
Show 17 fields pub units_per_em: u16, pub glyph_count: u16, pub is_monospace: bool, pub has_vertical_metrics: bool, pub ascent: f32, pub descent: f32, pub leading: f32, pub vertical_ascent: f32, pub vertical_descent: f32, pub vertical_leading: f32, pub cap_height: f32, pub x_height: f32, pub average_width: f32, pub max_width: f32, pub underline_offset: f32, pub strikeout_offset: f32, pub stroke_size: f32,
}
Expand description

Global font metrics.

Fields§

§units_per_em: u16

Number of font design units per em unit.

§glyph_count: u16

Number of glyphs in the font.

§is_monospace: bool

True if the font is monospace.

§has_vertical_metrics: bool

True if the font provides canonical vertical metrics.

§ascent: f32

Distance from the baseline to the top of the alignment box.

§descent: f32

Distance from the baseline to the bottom of the alignment box.

§leading: f32

Recommended additional spacing between lines.

§vertical_ascent: f32

Distance from the vertical center baseline to the right edge of the design space.

§vertical_descent: f32

Distance from the vertical center baseline to the left edge of the design space.

§vertical_leading: f32

Recommended additional spacing between columns.

§cap_height: f32

Distance from the baseline to the top of a typical English capital.

§x_height: f32

Distance from the baseline to the top of the lowercase “x” or similar character.

§average_width: f32

Average width of all non-zero characters in the font.

§max_width: f32

Maximum advance width of all characters in the font.

§underline_offset: f32

Recommended distance from the baseline to the top of an underline stroke.

§strikeout_offset: f32

Recommended distance from the baseline to the top of a strikeout stroke.

§stroke_size: f32

Recommended thickness of an underline or strikeout stroke.

Implementations§

source§

impl Metrics

source

pub fn scale(&self, ppem: f32) -> Self

Creates a new set of metrics scaled for the specified pixels per em unit.

source

pub fn linear_scale(&self, s: f32) -> Self

Creates a new set of metrics scaled by the specified factor.

Trait Implementations§

source§

impl Clone for Metrics

source§

fn clone(&self) -> Metrics

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 Metrics

source§

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

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

impl Default for Metrics

source§

fn default() -> Metrics

Returns the “default value” for a type. Read more
source§

impl Copy for Metrics

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.