pub struct PointingDeviceTypeData {
pub raw: u8,
pub value: PointingDeviceType,
}
Expand description
§Built-in Pointing Device Type Data
Fields§
§raw: u8
Raw value
raw is most useful when value is None. This is most likely to occur when the standard was updated but this library code has not been updated to match the current standard.
value: PointingDeviceType
The contained PointingDeviceType value
Trait Implementations§
Source§impl Debug for PointingDeviceTypeData
impl Debug for PointingDeviceTypeData
Source§impl Deref for PointingDeviceTypeData
impl Deref for PointingDeviceTypeData
Source§impl Display for PointingDeviceTypeData
impl Display for PointingDeviceTypeData
Source§impl From<u8> for PointingDeviceTypeData
impl From<u8> for PointingDeviceTypeData
Auto Trait Implementations§
impl Freeze for PointingDeviceTypeData
impl RefUnwindSafe for PointingDeviceTypeData
impl Send for PointingDeviceTypeData
impl Sync for PointingDeviceTypeData
impl Unpin for PointingDeviceTypeData
impl UnwindSafe for PointingDeviceTypeData
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