Struct ttf_parser::kern::Subtable
source · pub struct Subtable<'a> {
pub horizontal: bool,
pub variable: bool,
pub has_cross_stream: bool,
pub has_state_machine: bool,
pub format: Format<'a>,
}Expand description
A kerning subtable.
Fields§
§horizontal: boolIndicates that subtable is for horizontal text.
variable: boolIndicates that subtable is variable.
has_cross_stream: boolIndicates that subtable has a cross-stream values.
has_state_machine: boolIndicates that subtable uses a state machine.
In this case glyphs_kerning() will return None.
format: Format<'a>Subtable format.