Type Alias read_fonts::tables::base::BaseScript

source ·
pub type BaseScript<'a> = TableRef<'a, BaseScriptMarker>;
Expand description

Aliased Type§

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

Implementations§

source§

impl<'a> BaseScript<'a>

source

pub fn base_values_offset(&self) -> Nullable<Offset16>

Offset to BaseValues table, from beginning of BaseScript table (may be NULL)

source

pub fn base_values(&self) -> Option<Result<BaseValues<'a>, ReadError>>

Attempt to resolve base_values_offset.

source

pub fn default_min_max_offset(&self) -> Nullable<Offset16>

Offset to MinMax table, from beginning of BaseScript table (may be NULL)

source

pub fn default_min_max(&self) -> Option<Result<MinMax<'a>, ReadError>>

Attempt to resolve default_min_max_offset.

source

pub fn base_lang_sys_count(&self) -> u16

Number of BaseLangSysRecords defined — may be zero (0)

source

pub fn base_lang_sys_records(&self) -> &'a [BaseLangSysRecord]

Array of BaseLangSysRecords, in alphabetical order by BaseLangSysTag

Trait Implementations§

source§

impl<'a> Debug for BaseScript<'a>

source§

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

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

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