read_fonts::tables::layout

Type Alias ChainedSequenceContextFormat1

Source
pub type ChainedSequenceContextFormat1<'a> = TableRef<'a, ChainedSequenceContextFormat1Marker>;
Expand description

Aliased Type§

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

Implementations§

Source§

impl<'a> ChainedSequenceContextFormat1<'a>

Source

pub fn format(&self) -> u16

Format identifier: format = 1

Source

pub fn coverage_offset(&self) -> Offset16

Offset to Coverage table, from beginning of ChainSequenceContextFormat1 table

Source

pub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>

Attempt to resolve coverage_offset.

Source

pub fn chained_seq_rule_set_count(&self) -> u16

Number of ChainedSequenceRuleSet tables

Source

pub fn chained_seq_rule_set_offsets( &self, ) -> &'a [BigEndian<Nullable<Offset16>>]

Array of offsets to ChainedSeqRuleSet tables, from beginning of ChainedSequenceContextFormat1 table (may be NULL)

Source

pub fn chained_seq_rule_sets( &self, ) -> ArrayOfNullableOffsets<'a, ChainedSequenceRuleSet<'a>, Offset16>

A dynamically resolving wrapper for chained_seq_rule_set_offsets.

Trait Implementations§

Source§

impl<'a> FontRead<'a> for ChainedSequenceContextFormat1<'a>

Source§

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

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