[][src]Struct fontdue::raw::Glyph

pub struct Glyph {
    pub num_contours: i16,
    pub xmin: i16,
    pub xmax: i16,
    pub ymin: i16,
    pub ymax: i16,
    pub metrics: usize,
    pub points: Vec<RawPoint>,
}

Fields

num_contours: i16

The number of contours in the glyph.

xmin: i16

The lowest x point. This is derived from the points in case the font is malicious.

xmax: i16

The highest x point. This is derived from the points in case the font is malicious.

ymin: i16

The lowest y point. This is derived from the points in case the font is malicious.

ymax: i16

The highest y point. This is derived from the points in case the font is malicious.

metrics: usize

The index of the metrics location for this glyph.

points: Vec<RawPoint>

The first point is always marked as the start point, and the last point is always marked as the end point.

Trait Implementations

impl Clone for Glyph[src]

impl Default for Glyph[src]

Auto Trait Implementations

impl Unpin for Glyph

impl Send for Glyph

impl Sync for Glyph

impl RefUnwindSafe for Glyph

impl UnwindSafe for Glyph

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.