Type Alias read_fonts::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> Debug for TableDirectory<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

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

source§

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

Read an instace of Self from the provided data, performing validation. Read more
source§

impl<'a> SomeTable<'a> for TableDirectory<'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.