[]Struct gfx_glyph::ab_glyph::Glyph

pub struct Glyph {
    pub id: GlyphId,
    pub scale: PxScale,
    pub position: Point,
}

A glyph with pixel scale & position.

Fields

id: GlyphId

Glyph id.

scale: PxScale

Pixel scale of this glyph.

position: Point

Position of this glyph.

Trait Implementations

impl AsRef<Glyph> for OutlinedGlyph

impl Clone for Glyph

impl Debug for Glyph

impl PartialEq<Glyph> for Glyph

impl PartialOrd<Glyph> for Glyph

impl StructuralPartialEq for Glyph

Auto Trait Implementations

impl RefUnwindSafe for Glyph

impl Send for Glyph

impl Sync for Glyph

impl Unpin for Glyph

impl UnwindSafe for Glyph

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,