pub trait LookupSubtable {
    const TYPE: LookupType;
}
Expand description

A utility trait for writing lookup tables.

This allows us to attach the numerical lookup type to the appropriate concrete types, so that we can write it as needed without passing it around.

Required Associated Constants§

source

const TYPE: LookupType

The lookup type of this layout subtable.

Object Safety§

This trait is not object safe.

Implementors§