Type Alias CursivePosFormat1

Source
pub type CursivePosFormat1<'a> = TableRef<'a, CursivePosFormat1Marker>;
Expand description

Aliased Type§

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

Fields§

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

Implementations§

Source§

impl<'a> CursivePosFormat1<'a>

Source

pub fn pos_format(&self) -> u16

Format identifier: format = 1

Source

pub fn coverage_offset(&self) -> Offset16

Offset to Coverage table, from beginning of CursivePos subtable.

Source

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

Attempt to resolve coverage_offset.

Source

pub fn entry_exit_count(&self) -> u16

Number of EntryExit records

Source

pub fn entry_exit_record(&self) -> &'a [EntryExitRecord]

Array of EntryExit records, in Coverage index order.

Trait Implementations§

Source§

impl<'a> Debug for CursivePosFormat1<'a>

Source§

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

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

impl<'a> FontRead<'a> for CursivePosFormat1<'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 Intersect for CursivePosFormat1<'_>

Source§

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

Source§

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