Type Alias read_fonts::tables::layout::Lookup

source ·
pub type Lookup<'a, T> = TableRef<'a, LookupMarker<T>>;
Expand description

Aliased Type§

struct Lookup<'a, T> { /* private fields */ }

Implementations§

source§

impl<'a, T> Lookup<'a, T>

source

pub fn lookup_type(&self) -> u16

Different enumerations for GSUB and GPOS

source

pub fn lookup_flag(&self) -> LookupFlag

Lookup qualifiers

source

pub fn sub_table_count(&self) -> u16

Number of subtables for this lookup

source

pub fn subtable_offsets(&self) -> &'a [BigEndian<Offset16>]

Array of offsets to lookup subtables, from beginning of Lookup table

source

pub fn subtables(&self) -> ArrayOfOffsets<'a, T, Offset16>
where T: FontRead<'a>,

A dynamically resolving wrapper for subtable_offsets.

source

pub fn mark_filtering_set(&self) -> Option<u16>

Index (base 0) into GDEF mark glyph sets structure. This field is only present if the USE_MARK_FILTERING_SET lookup flag is set.

source§

impl<'a, T: FontRead<'a>> Lookup<'a, T>

source

pub fn get_subtable(&self, offset: Offset16) -> Result<T, ReadError>

Trait Implementations§

source§

impl<'a, T: FontRead<'a> + SomeTable<'a> + 'a> Debug for Lookup<'a, T>

source§

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

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

impl<'a, T> FontRead<'a> for Lookup<'a, T>

source§

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

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

impl<'a, T: FontRead<'a> + SomeTable<'a> + 'a> SomeTable<'a> for Lookup<'a, T>

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.