Type Alias IndexSubtableList

Source
pub type IndexSubtableList<'a> = TableRef<'a, IndexSubtableListMarker>;
Expand description

Aliased Type§

pub struct IndexSubtableList<'a> { /* private fields */ }

Implementations§

Source§

impl<'a> IndexSubtableList<'a>

Source

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

A constructor that requires additional arguments.

This type requires some external state in order to be parsed.

Source§

impl<'a> IndexSubtableList<'a>

Source

pub fn index_subtable_records(&self) -> &'a [IndexSubtableRecord]

Array of IndexSubtableRecords.

Trait Implementations§

Source§

impl<'a> FontReadWithArgs<'a> for IndexSubtableList<'a>

Source§

fn read_with_args(data: FontData<'a>, args: &u32) -> Result<Self, ReadError>

read an item, using the provided args. Read more
Source§

impl ReadArgs for IndexSubtableList<'_>