Type Alias owned_ttf_parser::apple_layout::StateEntry
source · pub type StateEntry = GenericStateEntry<()>;
Expand description
A legacy state entry used by StateTable.
Aliased Type§
struct StateEntry {
pub new_state: u16,
pub flags: u16,
pub extra: (),
}
Fields§
§new_state: u16
A new state.
flags: u16
Entry flags.
extra: ()
Additional data.
Use ()
if no data expected.
Implementations
source§impl<T> GenericStateEntry<T>where
T: FromData,
impl<T> GenericStateEntry<T>where
T: FromData,
sourcepub fn has_offset(&self) -> bool
pub fn has_offset(&self) -> bool
Checks that entry has an offset.
sourcepub fn value_offset(&self) -> ValueOffset
pub fn value_offset(&self) -> ValueOffset
Returns a value offset.
Used by kern::format1 subtable.
sourcepub fn has_advance(&self) -> bool
pub fn has_advance(&self) -> bool
If set, advance to the next glyph before going to the new state.
Trait Implementations
source§impl<T> FromData for GenericStateEntry<T>where
T: FromData,
impl<T> FromData for GenericStateEntry<T>where
T: FromData,
source§impl<T> Clone for GenericStateEntry<T>
impl<T> Clone for GenericStateEntry<T>
source§fn clone(&self) -> GenericStateEntry<T>
fn clone(&self) -> GenericStateEntry<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more