Struct owned_ttf_parser::stat::AxisValueSubtableFormat2
source · pub struct AxisValueSubtableFormat2 {
pub axis_index: u16,
pub flags: AxisValueFlags,
pub value_name_id: u16,
pub nominal_value: Fixed,
pub range_min_value: Fixed,
pub range_max_value: Fixed,
}
Expand description
Axis value subtable format 2.
Fields§
§axis_index: u16
Zero-based index into Table::axes
.
flags: AxisValueFlags
Flags for AxisValueSubtable
.
value_name_id: u16
The name ID of the display string.
nominal_value: Fixed
Nominal numeric value for this record.
range_min_value: Fixed
The minimum value for this record.
range_max_value: Fixed
The maximum value for this record.
Trait Implementations§
source§impl Clone for AxisValueSubtableFormat2
impl Clone for AxisValueSubtableFormat2
source§fn clone(&self) -> AxisValueSubtableFormat2
fn clone(&self) -> AxisValueSubtableFormat2
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 moresource§impl Debug for AxisValueSubtableFormat2
impl Debug for AxisValueSubtableFormat2
source§impl FromData for AxisValueSubtableFormat2
impl FromData for AxisValueSubtableFormat2
impl Copy for AxisValueSubtableFormat2
Auto Trait Implementations§
impl Freeze for AxisValueSubtableFormat2
impl RefUnwindSafe for AxisValueSubtableFormat2
impl Send for AxisValueSubtableFormat2
impl Sync for AxisValueSubtableFormat2
impl Unpin for AxisValueSubtableFormat2
impl UnwindSafe for AxisValueSubtableFormat2
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more