pub struct SetMap<'a> {Show 26 fields
pub device_spec: DeviceSpec,
pub flags: SetMapFlags,
pub min_key_code: Keycode,
pub max_key_code: Keycode,
pub first_type: u8,
pub n_types: u8,
pub first_key_sym: Keycode,
pub n_key_syms: u8,
pub total_syms: u16,
pub first_key_action: Keycode,
pub n_key_actions: u8,
pub total_actions: u16,
pub first_key_behavior: Keycode,
pub n_key_behaviors: u8,
pub total_key_behaviors: u8,
pub first_key_explicit: Keycode,
pub n_key_explicit: u8,
pub total_key_explicit: u8,
pub first_mod_map_key: Keycode,
pub n_mod_map_keys: u8,
pub total_mod_map_keys: u8,
pub first_v_mod_map_key: Keycode,
pub n_v_mod_map_keys: u8,
pub total_v_mod_map_keys: u8,
pub virtual_mods: VMod,
pub values: &'a [SetMapValues],
}Expand description
The SetMap request.
This request has no reply.
Associated cookie types are VoidCookie and VoidCookieChecked.
Fields§
§device_spec: DeviceSpec§flags: SetMapFlags§min_key_code: Keycode§max_key_code: Keycode§first_type: u8§n_types: u8§first_key_sym: Keycode§n_key_syms: u8§total_syms: u16§first_key_action: Keycode§n_key_actions: u8§total_actions: u16§first_key_behavior: Keycode§n_key_behaviors: u8§total_key_behaviors: u8§first_key_explicit: Keycode§n_key_explicit: u8§total_key_explicit: u8§first_mod_map_key: Keycode§n_mod_map_keys: u8§total_mod_map_keys: u8§first_v_mod_map_key: Keycode§n_v_mod_map_keys: u8§total_v_mod_map_keys: u8§virtual_mods: VMod§values: &'a [SetMapValues]Trait Implementations§
Source§impl<'a> RawRequest for SetMap<'a>
impl<'a> RawRequest for SetMap<'a>
Source§fn raw_request(&self, c: &Connection, checked: bool) -> u64
fn raw_request(&self, c: &Connection, checked: bool) -> u64
Actual implementation of the request sending Read more
impl<'a> RequestWithoutReply for SetMap<'a>
Auto Trait Implementations§
impl<'a> Freeze for SetMap<'a>
impl<'a> RefUnwindSafe for SetMap<'a>
impl<'a> Send for SetMap<'a>
impl<'a> Sync for SetMap<'a>
impl<'a> Unpin for SetMap<'a>
impl<'a> UnwindSafe for SetMap<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more