read_fonts

Type Alias TableDirectory

Source
pub type TableDirectory<'a> = TableRef<'a, TableDirectoryMarker>;
Expand description

The OpenType Table Directory

Aliased Type§

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

Implementations§

Source§

impl<'a> TableDirectory<'a>

Source

pub fn sfnt_version(&self) -> u32

0x00010000 or 0x4F54544F

Source

pub fn num_tables(&self) -> u16

Number of tables.

Source

pub fn search_range(&self) -> u16

Source

pub fn entry_selector(&self) -> u16

Source

pub fn range_shift(&self) -> u16

Source

pub fn table_records(&self) -> &'a [TableRecord]

Table records array—one for each top-level table in the font

Trait Implementations§

Source§

impl<'a> FontRead<'a> for TableDirectory<'a>

Source§

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

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