[][src]Struct rusttype::Glyph

pub struct Glyph<'font> { /* fields omitted */ }

A single glyph of a font.

A Glyph does not have an inherent scale or position associated with it. To augment a glyph with a size, give it a scale using scaled. You can then position it using positioned.

Implementations

impl<'font> Glyph<'font>[src]

pub fn font(&self) -> &Font<'font>[src]

The font to which this glyph belongs.

pub fn id(&self) -> GlyphId[src]

The glyph identifier for this glyph.

pub fn scaled(self, scale: Scale) -> ScaledGlyph<'font>[src]

Augments this glyph with scaling information, making methods that depend on the scale of the glyph available.

Trait Implementations

impl<'font> Clone for Glyph<'font>[src]

impl<'_> Debug for Glyph<'_>[src]

Auto Trait Implementations

impl<'font> RefUnwindSafe for Glyph<'font>

impl<'font> Send for Glyph<'font>

impl<'font> Sync for Glyph<'font>

impl<'font> Unpin for Glyph<'font>

impl<'font> UnwindSafe for Glyph<'font>

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.