Type Alias read_fonts::tables::bitmap::IndexSubtable3

source ·
pub type IndexSubtable3<'a> = TableRef<'a, IndexSubtable3Marker>;
Expand description

IndexSubTable3: variable-metrics glyphs with 2-byte offsets.

Aliased Type§

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

Implementations§

source§

impl<'a> IndexSubtable3<'a>

source

pub fn index_format(&self) -> u16

Format of this IndexSubTable.

source

pub fn image_format(&self) -> u16

Format of EBDT image data.

source

pub fn image_data_offset(&self) -> u32

Offset to image data in EBDT table.

source

pub fn sbit_offsets(&self) -> &'a [BigEndian<u16>]

Trait Implementations§

source§

impl<'a> Debug for IndexSubtable3<'a>

source§

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

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

impl<'a> FontRead<'a> for IndexSubtable3<'a>

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