[][src]Struct x11::xlib::_XkbStateRec

#[repr(C)]
pub struct _XkbStateRec {
    pub group: c_uchar,
    pub locked_group: c_uchar,
    pub base_group: c_ushort,
    pub latched_group: c_ushort,
    pub mods: c_uchar,
    pub base_mods: c_uchar,
    pub latched_mods: c_uchar,
    pub locked_mods: c_uchar,
    pub compat_state: c_uchar,
    pub grab_mods: c_uchar,
    pub compat_grab_mods: c_uchar,
    pub lookup_mods: c_uchar,
    pub compat_lookup_mods: c_uchar,
    pub ptr_buttons: c_ushort,
}

Fields

group: c_ucharlocked_group: c_ucharbase_group: c_ushortlatched_group: c_ushortmods: c_ucharbase_mods: c_ucharlatched_mods: c_ucharlocked_mods: c_ucharcompat_state: c_uchargrab_mods: c_ucharcompat_grab_mods: c_ucharlookup_mods: c_ucharcompat_lookup_mods: c_ucharptr_buttons: c_ushort

Trait Implementations

impl Clone for _XkbStateRec[src]

impl Copy for _XkbStateRec[src]

impl Debug for _XkbStateRec[src]

impl PartialEq<_XkbStateRec> for _XkbStateRec[src]

impl StructuralPartialEq for _XkbStateRec[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.