Type Alias read_fonts::tables::base::BaseCoordFormat3

source ·
pub type BaseCoordFormat3<'a> = TableRef<'a, BaseCoordFormat3Marker>;
Expand description

Aliased Type§

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

Implementations§

source§

impl<'a> BaseCoordFormat3<'a>

source

pub fn base_coord_format(&self) -> u16

Format identifier — format = 3

source

pub fn coordinate(&self) -> i16

X or Y value, in design units

source

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

Offset to Device table (non-variable font) / Variation Index table (variable font) for X or Y value, from beginning of BaseCoord table (may be NULL).

source

pub fn device(&self) -> Option<Result<DeviceOrVariationIndex<'a>, ReadError>>

Attempt to resolve device_offset.

Trait Implementations§

source§

impl<'a> Debug for BaseCoordFormat3<'a>

source§

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

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

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