pub type LigatureSubstFormat1<'a> = TableRef<'a, LigatureSubstFormat1Marker>;
Expand description
Aliased Type§
pub struct LigatureSubstFormat1<'a> {
pub(crate) shape: LigatureSubstFormat1Marker,
pub(crate) data: FontData<'a>,
}
Fields§
§shape: LigatureSubstFormat1Marker
§data: FontData<'a>
Implementations§
Source§impl<'a> LigatureSubstFormat1<'a>
impl<'a> LigatureSubstFormat1<'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 ligature_set_count(&self) -> u16
pub fn ligature_set_count(&self) -> u16
Number of LigatureSet tables
Sourcepub fn ligature_set_offsets(&self) -> &'a [BigEndian<Offset16>]
pub fn ligature_set_offsets(&self) -> &'a [BigEndian<Offset16>]
Array of offsets to LigatureSet tables. Offsets are from beginning of substitution subtable, ordered by Coverage index
Sourcepub fn ligature_sets(&self) -> ArrayOfOffsets<'a, LigatureSet<'a>, Offset16>
pub fn ligature_sets(&self) -> ArrayOfOffsets<'a, LigatureSet<'a>, Offset16>
A dynamically resolving wrapper for ligature_set_offsets
.
Trait Implementations§
Source§impl<'a> Debug for LigatureSubstFormat1<'a>
impl<'a> Debug for LigatureSubstFormat1<'a>
Source§impl<'a> FontRead<'a> for LigatureSubstFormat1<'a>
impl<'a> FontRead<'a> for LigatureSubstFormat1<'a>
Source§impl GlyphClosure for LigatureSubstFormat1<'_>
impl GlyphClosure for LigatureSubstFormat1<'_>
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.