[][src]Struct breadx::auto::xinput::EnterEvent

pub struct EnterEvent {
    pub event_type: u8,
    pub deviceid: DeviceId,
    pub sequence: u16,
    pub time: Timestamp,
    pub sourceid: DeviceId,
    pub mode: NotifyMode,
    pub detail: NotifyDetail,
    pub root: Window,
    pub event: Window,
    pub child: Window,
    pub root_x: Fp1616,
    pub root_y: Fp1616,
    pub event_x: Fp1616,
    pub event_y: Fp1616,
    pub same_screen: bool,
    pub focus: bool,
    pub mods: ModifierInfo,
    pub group: GroupInfo,
    pub buttons: Vec<u32>,
}

Fields

event_type: u8deviceid: DeviceIdsequence: u16time: Timestampsourceid: DeviceIdmode: NotifyModedetail: NotifyDetailroot: Windowevent: Windowchild: Windowroot_x: Fp1616root_y: Fp1616event_x: Fp1616event_y: Fp1616same_screen: boolfocus: boolmods: ModifierInfogroup: GroupInfobuttons: Vec<u32>

Trait Implementations

impl AsByteSequence for EnterEvent[src]

impl Clone for EnterEvent[src]

impl Debug for EnterEvent[src]

impl Default for EnterEvent[src]

impl Event for EnterEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.