pub enum CmapSubtable<'a> {
    Format0(Cmap0<'a>),
    Format2(Cmap2<'a>),
    Format4(Cmap4<'a>),
    Format6(Cmap6<'a>),
    Format8(Cmap8<'a>),
    Format10(Cmap10<'a>),
    Format12(Cmap12<'a>),
    Format13(Cmap13<'a>),
    Format14(Cmap14<'a>),
}
Expand description

The different cmap subtable formats.

Variants

Format0(Cmap0<'a>)

Format2(Cmap2<'a>)

Format4(Cmap4<'a>)

Format6(Cmap6<'a>)

Format8(Cmap8<'a>)

Format10(Cmap10<'a>)

Format12(Cmap12<'a>)

Format13(Cmap13<'a>)

Format14(Cmap14<'a>)

Trait Implementations

Formats the value using the given formatter. Read more
Read an instace of Self from the provided data, performing validation. Read more
The name of this table
Access this table’s fields, in declaration order.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.