Type Alias read_fonts::tables::cmap::Cmap14

source ·
pub type Cmap14<'a> = TableRef<'a, Cmap14Marker>;
Expand description

cmap Format 14: Unicode Variation Sequences

Aliased Type§

struct Cmap14<'a> { /* private fields */ }

Implementations§

source§

impl<'a> Cmap14<'a>

source

pub fn format(&self) -> u16

Subtable format. Set to 14.

source

pub fn length(&self) -> u32

Byte length of this subtable (including this header)

source

pub fn num_var_selector_records(&self) -> u32

Number of variation Selector Records

source

pub fn var_selector(&self) -> &'a [VariationSelector]

Array of VariationSelector records.

source§

impl<'a> Cmap14<'a>

source

pub fn map_variant( &self, codepoint: impl Into<u32>, selector: impl Into<u32>, ) -> Option<MapVariant>

Maps a codepoint and variation selector to a nominal glyph identifier.

source

pub fn iter(&self) -> Cmap14Iter<'a>

Returns an iterator over all (codepoint, selector, mapping variant) triples in the subtable.

source

pub fn closure_glyphs( &self, unicodes: &IntSet<u32>, glyph_set: &mut IntSet<GlyphId>, )

Trait Implementations§

source§

impl<'a> Debug for Cmap14<'a>

source§

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

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

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