pub type StateHeader<'a> = TableRef<'a, StateHeaderMarker>;
Expand description
Header for a state table.
Aliased Type§
struct StateHeader<'a> { /* private fields */ }
Implementations§
Source§impl<'a> StateHeader<'a>
impl<'a> StateHeader<'a>
Sourcepub fn state_size(&self) -> u16
pub fn state_size(&self) -> u16
Size of a state, in bytes. The size is limited to 8 bits, although the field is 16 bits for alignment.
Sourcepub fn class_table_offset(&self) -> Offset16
pub fn class_table_offset(&self) -> Offset16
Byte offset from the beginning of the state table to the class subtable.
Sourcepub fn class_table(&self) -> Result<ClassSubtable<'a>, ReadError>
pub fn class_table(&self) -> Result<ClassSubtable<'a>, ReadError>
Attempt to resolve class_table_offset
.
Sourcepub fn state_array_offset(&self) -> Offset16
pub fn state_array_offset(&self) -> Offset16
Byte offset from the beginning of the state table to the state array.
Sourcepub fn state_array(&self) -> Result<RawBytes<'a>, ReadError>
pub fn state_array(&self) -> Result<RawBytes<'a>, ReadError>
Attempt to resolve state_array_offset
.
Sourcepub fn entry_table_offset(&self) -> Offset16
pub fn entry_table_offset(&self) -> Offset16
Byte offset from the beginning of the state table to the entry subtable.
Sourcepub fn entry_table(&self) -> Result<RawBytes<'a>, ReadError>
pub fn entry_table(&self) -> Result<RawBytes<'a>, ReadError>
Attempt to resolve entry_table_offset
.
Source§impl<'a, T> TableRef<'a, T>
impl<'a, T> TableRef<'a, T>
Sourcepub fn resolve_offset<O: Offset, R: FontRead<'a>>(
&self,
offset: O,
) -> Result<R, ReadError>
pub fn resolve_offset<O: Offset, R: FontRead<'a>>( &self, offset: O, ) -> Result<R, ReadError>
Resolve the provided offset from the start of this table.
Sourcepub fn offset_data(&self) -> FontData<'a>
pub fn offset_data(&self) -> FontData<'a>
Return a reference to this table’s raw data.
We use this in the compile crate to resolve offsets.