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