Type Alias DeviceFocusOutEvent

pub type DeviceFocusOutEvent = DeviceFocusInEvent;

Aliased Type§

struct DeviceFocusOutEvent {
    pub response_type: u8,
    pub detail: NotifyDetail,
    pub sequence: u16,
    pub time: u32,
    pub window: u32,
    pub mode: NotifyMode,
    pub device_id: u8,
}

Fields§

§response_type: u8§detail: NotifyDetail§sequence: u16§time: u32§window: u32§mode: NotifyMode§device_id: u8

Trait Implementations

§

impl Clone for DeviceFocusInEvent

§

fn clone(&self) -> DeviceFocusInEvent

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
§

impl Debug for DeviceFocusInEvent

§

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

Formats the value using the given formatter. Read more
§

impl Default for DeviceFocusInEvent

§

fn default() -> DeviceFocusInEvent

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

impl Serialize for DeviceFocusInEvent

§

type Bytes = [u8; 32]

The value returned by serialize. Read more
§

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

Serialize this value into X11 raw bytes.
§

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

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

impl TryParse for DeviceFocusInEvent

§

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

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

impl Copy for DeviceFocusInEvent