Struct x11rb_protocol::protocol::xinput::DeviceValuatorEvent
source · pub struct DeviceValuatorEvent {
pub response_type: u8,
pub device_id: u8,
pub sequence: u16,
pub device_state: u16,
pub num_valuators: u8,
pub first_valuator: u8,
pub valuators: [i32; 6],
}
Fields§
§response_type: u8
§device_id: u8
§sequence: u16
§device_state: u16
§num_valuators: u8
§first_valuator: u8
§valuators: [i32; 6]
Trait Implementations§
source§impl Clone for DeviceValuatorEvent
impl Clone for DeviceValuatorEvent
source§fn clone(&self) -> DeviceValuatorEvent
fn clone(&self) -> DeviceValuatorEvent
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 DeviceValuatorEvent
impl Debug for DeviceValuatorEvent
source§impl Default for DeviceValuatorEvent
impl Default for DeviceValuatorEvent
source§fn default() -> DeviceValuatorEvent
fn default() -> DeviceValuatorEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DeviceValuatorEvent
impl<'de> Deserialize<'de> for DeviceValuatorEvent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<&DeviceValuatorEvent> for [u8; 32]
impl From<&DeviceValuatorEvent> for [u8; 32]
source§fn from(input: &DeviceValuatorEvent) -> Self
fn from(input: &DeviceValuatorEvent) -> Self
Converts to this type from the input type.
source§impl From<&DeviceValuatorEvent> for EventForSend
impl From<&DeviceValuatorEvent> for EventForSend
source§fn from(value: &DeviceValuatorEvent) -> Self
fn from(value: &DeviceValuatorEvent) -> Self
Converts to this type from the input type.
source§impl From<DeviceValuatorEvent> for [u8; 32]
impl From<DeviceValuatorEvent> for [u8; 32]
source§fn from(input: DeviceValuatorEvent) -> Self
fn from(input: DeviceValuatorEvent) -> Self
Converts to this type from the input type.
source§impl From<DeviceValuatorEvent> for EventForSend
impl From<DeviceValuatorEvent> for EventForSend
source§fn from(value: DeviceValuatorEvent) -> Self
fn from(value: DeviceValuatorEvent) -> Self
Converts to this type from the input type.
source§impl Hash for DeviceValuatorEvent
impl Hash for DeviceValuatorEvent
source§impl Ord for DeviceValuatorEvent
impl Ord for DeviceValuatorEvent
source§fn cmp(&self, other: &DeviceValuatorEvent) -> Ordering
fn cmp(&self, other: &DeviceValuatorEvent) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for DeviceValuatorEvent
impl PartialEq for DeviceValuatorEvent
source§fn eq(&self, other: &DeviceValuatorEvent) -> bool
fn eq(&self, other: &DeviceValuatorEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DeviceValuatorEvent
impl PartialOrd for DeviceValuatorEvent
source§fn partial_cmp(&self, other: &DeviceValuatorEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &DeviceValuatorEvent) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for DeviceValuatorEvent
impl Serialize for DeviceValuatorEvent
source§impl Serialize for DeviceValuatorEvent
impl Serialize for DeviceValuatorEvent
source§impl TryParse for DeviceValuatorEvent
impl TryParse for DeviceValuatorEvent
impl Copy for DeviceValuatorEvent
impl Eq for DeviceValuatorEvent
impl StructuralPartialEq for DeviceValuatorEvent
Auto Trait Implementations§
impl Freeze for DeviceValuatorEvent
impl RefUnwindSafe for DeviceValuatorEvent
impl Send for DeviceValuatorEvent
impl Sync for DeviceValuatorEvent
impl Unpin for DeviceValuatorEvent
impl UnwindSafe for DeviceValuatorEvent
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> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
source§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<RawFdContainer>
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<RawFdContainer> ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more