read_fonts::tables::layout

Type Alias ClassSequenceRule

source
pub type ClassSequenceRule<'a> = TableRef<'a, ClassSequenceRuleMarker>;
Expand description

Aliased Type§

struct ClassSequenceRule<'a> { /* private fields */ }

Implementations§

source§

impl<'a> ClassSequenceRule<'a>

source

pub fn glyph_count(&self) -> u16

Number of glyphs to be matched

source

pub fn seq_lookup_count(&self) -> u16

Number of SequenceLookupRecords

source

pub fn input_sequence(&self) -> &'a [BigEndian<u16>]

Sequence of classes to be matched to the input glyph sequence, beginning with the second glyph position

source

pub fn seq_lookup_records(&self) -> &'a [SequenceLookupRecord]

Array of SequenceLookupRecords

Trait Implementations§

source§

impl<'a> FontRead<'a> for ClassSequenceRule<'a>

source§

fn read(data: FontData<'a>) -> Result<Self, ReadError>

Read an instance of Self from the provided data, performing validation. Read more