x11rb_protocol::protocol::xinput

Type Alias DeviceButtonPressEvent

Source
pub type DeviceButtonPressEvent = DeviceKeyPressEvent;

Aliased Type§

struct DeviceButtonPressEvent {
Show 14 fields pub response_type: u8, pub detail: u8, pub sequence: u16, pub time: u32, pub root: u32, pub event: u32, pub child: u32, pub root_x: i16, pub root_y: i16, pub event_x: i16, pub event_y: i16, pub state: KeyButMask, pub same_screen: bool, pub device_id: u8,
}

Fields§

§response_type: u8§detail: u8§sequence: u16§time: u32§root: u32§event: u32§child: u32§root_x: i16§root_y: i16§event_x: i16§event_y: i16§state: KeyButMask§same_screen: bool§device_id: u8

Trait Implementations

Source§

impl Clone for DeviceKeyPressEvent

Source§

fn clone(&self) -> DeviceKeyPressEvent

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DeviceKeyPressEvent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DeviceKeyPressEvent

Source§

fn default() -> DeviceKeyPressEvent

Returns the “default value” for a type. Read more
Source§

impl Serialize for DeviceKeyPressEvent

Source§

type Bytes = [u8; 32]

The value returned by serialize. Read more
Source§

fn serialize(&self) -> [u8; 32]

Serialize this value into X11 raw bytes.
Source§

fn serialize_into(&self, bytes: &mut Vec<u8>)

Serialize this value into X11 raw bytes, appending the result into bytes. Read more
Source§

impl TryParse for DeviceKeyPressEvent

Source§

fn try_parse(initial_value: &[u8]) -> Result<(Self, &[u8]), ParseError>

Try to parse the given values into an instance of this type. Read more
Source§

impl Copy for DeviceKeyPressEvent