Type Alias read_fonts::tables::gdef::AttachList
source · pub type AttachList<'a> = TableRef<'a, AttachListMarker>;
Expand description
Aliased Type§
struct AttachList<'a> { /* private fields */ }
Implementations§
source§impl<'a> AttachList<'a>
impl<'a> AttachList<'a>
sourcepub fn coverage_offset(&self) -> Offset16
pub fn coverage_offset(&self) -> Offset16
Offset to Coverage table - from beginning of AttachList table
sourcepub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>
pub fn coverage(&self) -> Result<CoverageTable<'a>, ReadError>
Attempt to resolve coverage_offset
.
sourcepub fn glyph_count(&self) -> u16
pub fn glyph_count(&self) -> u16
Number of glyphs with attachment points
sourcepub fn attach_point_offsets(&self) -> &'a [BigEndian<Offset16>]
pub fn attach_point_offsets(&self) -> &'a [BigEndian<Offset16>]
Array of offsets to AttachPoint tables-from beginning of AttachList table-in Coverage Index order
sourcepub fn attach_points(&self) -> ArrayOfOffsets<'a, AttachPoint<'a>, Offset16>
pub fn attach_points(&self) -> ArrayOfOffsets<'a, AttachPoint<'a>, Offset16>
A dynamically resolving wrapper for attach_point_offsets
.