read_fonts::tables::gdef

Type Alias MarkGlyphSets

Source
pub type MarkGlyphSets<'a> = TableRef<'a, MarkGlyphSetsMarker>;
Expand description

Aliased Type§

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

Implementations§

Source§

impl<'a> MarkGlyphSets<'a>

Source

pub fn format(&self) -> u16

Format identifier == 1

Source

pub fn mark_glyph_set_count(&self) -> u16

Number of mark glyph sets defined

Source

pub fn coverage_offsets(&self) -> &'a [BigEndian<Offset32>]

Array of offsets to mark glyph set coverage tables, from the start of the MarkGlyphSets table.

Source

pub fn coverages(&self) -> ArrayOfOffsets<'a, CoverageTable<'a>, Offset32>

A dynamically resolving wrapper for coverage_offsets.

Trait Implementations§

Source§

impl<'a> FontRead<'a> for MarkGlyphSets<'a>

Source§

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

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