Type Alias ChainedSequenceRuleSet

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

Aliased Type§

pub struct ChainedSequenceRuleSet<'a> {
    pub(crate) shape: ChainedSequenceRuleSetMarker,
    pub(crate) data: FontData<'a>,
}

Fields§

§shape: ChainedSequenceRuleSetMarker§data: FontData<'a>

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.