pub struct AxisValue {
pub axis_index: u16,
pub value: Fixed,
}Expand description
An axis value record from a format 4 axis value table.
Fields§
§axis_index: u16Zero-base index into the axis record array identifying the axis to which this value applies.
value: FixedA numeric value for this attribute value.
Trait Implementations§
Source§impl ReadBinaryDep for AxisValue
impl ReadBinaryDep for AxisValue
Source§impl ReadFixedSizeDep for AxisValue
impl ReadFixedSizeDep for AxisValue
impl Copy for AxisValue
Auto Trait Implementations§
impl Freeze for AxisValue
impl RefUnwindSafe for AxisValue
impl Send for AxisValue
impl Sync for AxisValue
impl Unpin for AxisValue
impl UnwindSafe for AxisValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more