Type Alias MultipleSubstFormat1

Source
pub type MultipleSubstFormat1<'a> = TableRef<'a, MultipleSubstFormat1Marker>;
Expand description

Aliased Type§

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

Fields§

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

Implementations§

Source§

impl<'a> MultipleSubstFormat1<'a>

Source

pub fn subst_format(&self) -> u16

Format identifier: format = 1

Source

pub fn coverage_offset(&self) -> Offset16

Offset to Coverage table, from beginning of substitution subtable

Source

pub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>

Attempt to resolve coverage_offset.

Source

pub fn sequence_count(&self) -> u16

Number of Sequence table offsets in the sequenceOffsets array

Source

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

Array of offsets to Sequence tables. Offsets are from beginning of substitution subtable, ordered by Coverage index

Source

pub fn sequences(&self) -> ArrayOfOffsets<'a, Sequence<'a>, Offset16>

A dynamically resolving wrapper for sequence_offsets.

Trait Implementations§

Source§

impl<'a> Debug for MultipleSubstFormat1<'a>

Source§

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

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

impl<'a> FontRead<'a> for MultipleSubstFormat1<'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 GlyphClosure for MultipleSubstFormat1<'_>

Source§

fn closure_glyphs( &self, ctx: &mut ClosureCtx<'_>, _lookup_list: &SubstitutionLookupList<'_>, _lookup_index: u16, ) -> Result<(), ReadError>

Update the set of glyphs with any glyphs reachable via substitution.
Source§

fn may_have_non_1to1(&self) -> Result<bool, ReadError>

Source§

impl Intersect for MultipleSubstFormat1<'_>

Source§

fn intersects(&self, glyph_set: &IntSet<GlyphId>) -> Result<bool, ReadError>

Source§

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