Struct breadx::auto::xkb::GetMapReply[][src]

pub struct GetMapReply {
    pub reply_type: u8,
    pub device_id: u8,
    pub sequence: u16,
    pub length: u32,
    pub min_key_code: Keycode,
    pub max_key_code: Keycode,
    pub present: MapPart,
    pub first_type: u8,
    pub total_types: u8,
    pub first_key_sym: Keycode,
    pub total_syms: u16,
    pub first_key_action: Keycode,
    pub first_key_behavior: Keycode,
    pub n_key_behaviors: u8,
    pub first_key_explicit: Keycode,
    pub n_key_explicit: u8,
    pub first_mod_map_key: Keycode,
    pub n_mod_map_keys: u8,
    pub first_v_mod_map_key: Keycode,
    pub n_v_mod_map_keys: u8,
    pub virtual_mods: VMod,
    pub types_rtrn: Vec<KeyType>,
    pub syms_rtrn: Vec<KeySymMap>,
    pub acts_rtrn_count: Vec<u8>,
    pub acts_rtrn_acts: Vec<Action>,
    pub behaviors_rtrn: Vec<SetBehavior>,
    pub vmods_rtrn: Vec<u8>,
    pub explicit_rtrn: Vec<SetExplicit>,
    pub modmap_rtrn: Vec<KeyModMap>,
    pub vmodmap_rtrn: Vec<KeyVModMap>,
}

Fields

reply_type: u8device_id: u8sequence: u16length: u32min_key_code: Keycodemax_key_code: Keycodepresent: MapPartfirst_type: u8total_types: u8first_key_sym: Keycodetotal_syms: u16first_key_action: Keycodefirst_key_behavior: Keycoden_key_behaviors: u8first_key_explicit: Keycoden_key_explicit: u8first_mod_map_key: Keycoden_mod_map_keys: u8first_v_mod_map_key: Keycoden_v_mod_map_keys: u8virtual_mods: VModtypes_rtrn: Vec<KeyType>syms_rtrn: Vec<KeySymMap>acts_rtrn_count: Vec<u8>acts_rtrn_acts: Vec<Action>behaviors_rtrn: Vec<SetBehavior>vmods_rtrn: Vec<u8>explicit_rtrn: Vec<SetExplicit>modmap_rtrn: Vec<KeyModMap>vmodmap_rtrn: Vec<KeyVModMap>

Trait Implementations

impl AsByteSequence for GetMapReply[src]

impl Clone for GetMapReply[src]

impl Debug for GetMapReply[src]

impl Default for GetMapReply[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.