Type Alias read_fonts::tables::gpos::PairPosFormat2
source · pub type PairPosFormat2<'a> = TableRef<'a, PairPosFormat2Marker>;
Expand description
Pair Adjustment Positioning Format 2: Class Pair Adjustment
Aliased Type§
struct PairPosFormat2<'a> { /* private fields */ }
Implementations§
source§impl<'a> PairPosFormat2<'a>
impl<'a> PairPosFormat2<'a>
sourcepub fn pos_format(&self) -> u16
pub fn pos_format(&self) -> u16
Format identifier: format = 2
sourcepub fn coverage_offset(&self) -> Offset16
pub fn coverage_offset(&self) -> Offset16
Offset to Coverage table, from beginning of PairPos subtable.
sourcepub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>
pub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>
Attempt to resolve coverage_offset
.
sourcepub fn value_format1(&self) -> ValueFormat
pub fn value_format1(&self) -> ValueFormat
ValueRecord definition — for the first glyph of the pair (may be zero).
sourcepub fn value_format2(&self) -> ValueFormat
pub fn value_format2(&self) -> ValueFormat
ValueRecord definition — for the second glyph of the pair (may be zero).
sourcepub fn class_def1_offset(&self) -> Offset16
pub fn class_def1_offset(&self) -> Offset16
Offset to ClassDef table, from beginning of PairPos subtable — for the first glyph of the pair.
sourcepub fn class_def1(&self) -> Result<ClassDef<'a>, ReadError>
pub fn class_def1(&self) -> Result<ClassDef<'a>, ReadError>
Attempt to resolve class_def1_offset
.
sourcepub fn class_def2_offset(&self) -> Offset16
pub fn class_def2_offset(&self) -> Offset16
Offset to ClassDef table, from beginning of PairPos subtable — for the second glyph of the pair.
sourcepub fn class_def2(&self) -> Result<ClassDef<'a>, ReadError>
pub fn class_def2(&self) -> Result<ClassDef<'a>, ReadError>
Attempt to resolve class_def2_offset
.
sourcepub fn class1_count(&self) -> u16
pub fn class1_count(&self) -> u16
Number of classes in classDef1 table — includes Class 0.
sourcepub fn class2_count(&self) -> u16
pub fn class2_count(&self) -> u16
Number of classes in classDef2 table — includes Class 0.
sourcepub fn class1_records(&self) -> ComputedArray<'a, Class1Record<'a>>
pub fn class1_records(&self) -> ComputedArray<'a, Class1Record<'a>>
Array of Class1 records, ordered by classes in classDef1.