Struct xim::XEvent[][src]

pub struct XEvent {
    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: u16,
    pub same_screen: bool,
}

Fields

response_type: u8detail: u8sequence: u16time: u32root: u32event: u32child: u32root_x: i16root_y: i16event_x: i16event_y: i16state: u16same_screen: bool

Trait Implementations

impl Clone for XEvent[src]

impl Debug for XEvent[src]

impl Eq for XEvent[src]

impl PartialEq<XEvent> for XEvent[src]

impl StructuralEq for XEvent[src]

impl StructuralPartialEq for XEvent[src]

impl XimRead for XEvent[src]

impl XimWrite for XEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for XEvent

impl Send for XEvent

impl Sync for XEvent

impl Unpin for XEvent

impl UnwindSafe for XEvent

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.