Type Alias read_fonts::tables::feat::SettingNameArray

source ·
pub type SettingNameArray<'a> = TableRef<'a, SettingNameArrayMarker>;

Aliased Type§

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

Implementations§

source§

impl<'a> SettingNameArray<'a>

source

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

A constructor that requires additional arguments.

This type requires some external state in order to be parsed.

source§

impl<'a> SettingNameArray<'a>

source

pub fn settings(&self) -> &'a [SettingName]

List of setting names for a feature.

Trait Implementations§

source§

impl<'a> Debug for SettingNameArray<'a>

source§

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

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

impl<'a> FontReadWithArgs<'a> for SettingNameArray<'a>

source§

fn read_with_args(data: FontData<'a>, args: &u16) -> Result<Self, ReadError>

read an item, using the provided args. Read more
source§

impl ReadArgs for SettingNameArray<'_>

source§

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