Type Alias IndexSubtable3

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

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

Aliased Type§

pub struct IndexSubtable3<'a> {
    pub(crate) shape: IndexSubtable3Marker,
    pub(crate) data: FontData<'a>,
}

Fields§

§shape: IndexSubtable3Marker§data: FontData<'a>

Implementations§

Source§

impl<'a> IndexSubtable3<'a>

Source

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

A constructor that requires additional arguments.

This type requires some external state in order to be parsed.

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

Source§

fn read_with_args( data: FontData<'a>, args: &(GlyphId16, GlyphId16), ) -> Result<Self, ReadError>

read an item, using the provided args. Read more
Source§

impl ReadArgs for IndexSubtable3<'_>

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.