read_fonts::tables::cmap

Type Alias DefaultUvs

Source
pub type DefaultUvs<'a> = TableRef<'a, DefaultUvsMarker>;
Expand description

Aliased Type§

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

Implementations§

Source§

impl<'a> DefaultUvs<'a>

Source

pub fn num_unicode_value_ranges(&self) -> u32

Number of Unicode character ranges.

Source

pub fn ranges(&self) -> &'a [UnicodeRange]

Array of UnicodeRange records.

Trait Implementations§

Source§

impl<'a> FontRead<'a> for DefaultUvs<'a>

Source§

fn read(data: FontData<'a>) -> Result<Self, ReadError>

Read an instance of Self from the provided data, performing validation. Read more