Type Alias read_fonts::tables::layout::ChainedSequenceRuleSet

source ·
pub type ChainedSequenceRuleSet<'a> = TableRef<'a, ChainedSequenceRuleSetMarker>;
Expand description

Aliased Type§

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

Implementations§

source§

impl<'a> ChainedSequenceRuleSet<'a>

source

pub fn chained_seq_rule_count(&self) -> u16

Number of ChainedSequenceRule tables

source

pub fn chained_seq_rule_offsets(&self) -> &'a [BigEndian<Offset16>]

Array of offsets to ChainedSequenceRule tables, from beginning of ChainedSequenceRuleSet table

source

pub fn chained_seq_rules( &self, ) -> ArrayOfOffsets<'a, ChainedSequenceRule<'a>, Offset16>

A dynamically resolving wrapper for chained_seq_rule_offsets.

Trait Implementations§

source§

impl<'a> Debug for ChainedSequenceRuleSet<'a>

source§

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

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

impl<'a> FontRead<'a> for ChainedSequenceRuleSet<'a>

source§

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

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

impl<'a> SomeTable<'a> for ChainedSequenceRuleSet<'a>

source§

fn type_name(&self) -> &str

The name of this table
source§

fn get_field(&self, idx: usize) -> Option<Field<'a>>

Access this table’s fields, in declaration order.