read_fonts::tables::aat

Type Alias StxHeader

Source
pub type StxHeader<'a> = TableRef<'a, StxHeaderMarker>;
Expand description

Header for an extended state table.

Aliased Type§

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

Implementations§

Source§

impl<'a> StxHeader<'a>

Source

pub fn n_classes(&self) -> u32

Number of classes, which is the number of 16-bit entry indices in a single line in the state array.

Source

pub fn class_table_offset(&self) -> Offset32

Byte offset from the beginning of the state table to the class subtable.

Source

pub fn class_table(&self) -> Result<LookupU16<'a>, ReadError>

Attempt to resolve class_table_offset.

Source

pub fn state_array_offset(&self) -> Offset32

Byte offset from the beginning of the state table to the state array.

Source

pub fn state_array(&self) -> Result<RawWords<'a>, ReadError>

Attempt to resolve state_array_offset.

Source

pub fn entry_table_offset(&self) -> Offset32

Byte offset from the beginning of the state table to the entry subtable.

Source

pub fn entry_table(&self) -> Result<RawBytes<'a>, ReadError>

Attempt to resolve entry_table_offset.

Trait Implementations§

Source§

impl<'a> FontRead<'a> for StxHeader<'a>

Source§

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

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