Struct opentype::glyph_definition::GlyphDefinition[][src]

pub struct GlyphDefinition {
    pub header: Header,
    pub glyph_class: Option<Class>,
    pub attachments: Option<Attachments>,
    pub ligatures: Option<Ligatures>,
    pub mark_class: Option<Class>,
    pub marks: Option<Marks>,
    pub variations: Option<Variations>,
}

A glyph-definition table.

Fields

header: Headerglyph_class: Option<Class>attachments: Option<Attachments>ligatures: Option<Ligatures>mark_class: Option<Class>marks: Option<Marks>variations: Option<Variations>

Trait Implementations

impl Clone for GlyphDefinition[src]

impl Debug for GlyphDefinition[src]

impl Default for GlyphDefinition[src]

impl Table<'static> for GlyphDefinition[src]

type Parameter = ()

impl Value for GlyphDefinition[src]

Auto Trait Implementations

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.