pub type ReverseChainSingleSubstFormat1<'a> = TableRef<'a, ReverseChainSingleSubstFormat1Marker>;
Expand description
Aliased Type§
pub struct ReverseChainSingleSubstFormat1<'a> {
pub(crate) shape: ReverseChainSingleSubstFormat1Marker,
pub(crate) data: FontData<'a>,
}
Fields§
§shape: ReverseChainSingleSubstFormat1Marker
§data: FontData<'a>
Implementations§
Source§impl<'a> ReverseChainSingleSubstFormat1<'a>
impl<'a> ReverseChainSingleSubstFormat1<'a>
Sourcepub fn subst_format(&self) -> u16
pub fn subst_format(&self) -> u16
Format identifier: format = 1
Sourcepub fn coverage_offset(&self) -> Offset16
pub fn coverage_offset(&self) -> Offset16
Offset to Coverage table, from beginning of substitution subtable.
Sourcepub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>
pub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>
Attempt to resolve coverage_offset
.
Sourcepub fn backtrack_glyph_count(&self) -> u16
pub fn backtrack_glyph_count(&self) -> u16
Number of glyphs in the backtrack sequence.
Sourcepub fn backtrack_coverage_offsets(&self) -> &'a [BigEndian<Offset16>]
pub fn backtrack_coverage_offsets(&self) -> &'a [BigEndian<Offset16>]
Array of offsets to coverage tables in backtrack sequence, in glyph sequence order.
Sourcepub fn backtrack_coverages(
&self,
) -> ArrayOfOffsets<'a, CoverageTable<'a>, Offset16>
pub fn backtrack_coverages( &self, ) -> ArrayOfOffsets<'a, CoverageTable<'a>, Offset16>
A dynamically resolving wrapper for backtrack_coverage_offsets
.
Sourcepub fn lookahead_glyph_count(&self) -> u16
pub fn lookahead_glyph_count(&self) -> u16
Number of glyphs in lookahead sequence.
Sourcepub fn lookahead_coverage_offsets(&self) -> &'a [BigEndian<Offset16>]
pub fn lookahead_coverage_offsets(&self) -> &'a [BigEndian<Offset16>]
Array of offsets to coverage tables in lookahead sequence, in glyph sequence order.
Sourcepub fn lookahead_coverages(
&self,
) -> ArrayOfOffsets<'a, CoverageTable<'a>, Offset16>
pub fn lookahead_coverages( &self, ) -> ArrayOfOffsets<'a, CoverageTable<'a>, Offset16>
A dynamically resolving wrapper for lookahead_coverage_offsets
.
Sourcepub fn glyph_count(&self) -> u16
pub fn glyph_count(&self) -> u16
Number of glyph IDs in the substituteGlyphIDs array.
Sourcepub fn substitute_glyph_ids(&self) -> &'a [BigEndian<GlyphId16>]
pub fn substitute_glyph_ids(&self) -> &'a [BigEndian<GlyphId16>]
Array of substitute glyph IDs — ordered by Coverage index.
Trait Implementations§
Source§impl<'a> Debug for ReverseChainSingleSubstFormat1<'a>
impl<'a> Debug for ReverseChainSingleSubstFormat1<'a>
Source§impl<'a> FontRead<'a> for ReverseChainSingleSubstFormat1<'a>
impl<'a> FontRead<'a> for ReverseChainSingleSubstFormat1<'a>
Source§impl GlyphClosure for ReverseChainSingleSubstFormat1<'_>
impl GlyphClosure for ReverseChainSingleSubstFormat1<'_>
Source§fn closure_glyphs(
&self,
ctx: &mut ClosureCtx<'_>,
_lookup_list: &SubstitutionLookupList<'_>,
_lookup_index: u16,
) -> Result<(), ReadError>
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.