Skip to main content

HeaderVariant

Enum HeaderVariant 

Source
pub enum HeaderVariant {
    Microsoft,
    Apple,
}
Expand description

Which kern header layout the input table uses. Exposed so callers can tell apart Microsoft-format fonts (whose Format-0 subtables this crate decodes) from Apple-format fonts (whose subtable bodies are currently surfaced as “no kerning pairs available” rather than rejected at parse time).

Variants§

§

Microsoft

Microsoft / OpenType layout: u16 version (= 0), u16 nTables, then nTables subtables. Per-subtable header is u16 version, u16 length, u16 coverage. This crate decodes Format-0 horizontal kerning subtables.

§

Apple

Apple layout: u32 version (= 0x00010000), u32 nTables, then nTables subtables with a different per-subtable header layout. The subtable bodies are not decoded by this crate; callers that need Apple-kern data should hold the fixed Apple kerx clean-room reference and submit a follow-up.

Trait Implementations§

Source§

impl Clone for HeaderVariant

Source§

fn clone(&self) -> HeaderVariant

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for HeaderVariant

Source§

impl Debug for HeaderVariant

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for HeaderVariant

Source§

impl PartialEq for HeaderVariant

Source§

fn eq(&self, other: &HeaderVariant) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for HeaderVariant

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.