pub struct SetModifierMapping<'a> {
pub keycodes_per_modifier: u8,
pub keycodes: &'a [Keycode],
}Expand description
The SetModifierMapping request.
This request replies SetModifierMappingReply.
Associated cookie types are SetModifierMappingCookie and SetModifierMappingCookieUnchecked.
Fields§
§keycodes_per_modifier: u8§keycodes: &'a [Keycode]Trait Implementations§
Source§impl<'a> Clone for SetModifierMapping<'a>
impl<'a> Clone for SetModifierMapping<'a>
Source§fn clone(&self) -> SetModifierMapping<'a>
fn clone(&self) -> SetModifierMapping<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for SetModifierMapping<'a>
impl<'a> Debug for SetModifierMapping<'a>
Source§impl<'a> RawRequest for SetModifierMapping<'a>
impl<'a> RawRequest for SetModifierMapping<'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
Source§impl<'a> Request for SetModifierMapping<'a>
impl<'a> Request for SetModifierMapping<'a>
Source§impl<'a> RequestWithReply for SetModifierMapping<'a>
impl<'a> RequestWithReply for SetModifierMapping<'a>
Source§type Reply = SetModifierMappingReply
type Reply = SetModifierMappingReply
Reply associated with the request
Source§type Cookie = SetModifierMappingCookie
type Cookie = SetModifierMappingCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = SetModifierMappingCookieUnchecked
type CookieUnchecked = SetModifierMappingCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl<'a> Freeze for SetModifierMapping<'a>
impl<'a> RefUnwindSafe for SetModifierMapping<'a>
impl<'a> Send for SetModifierMapping<'a>
impl<'a> Sync for SetModifierMapping<'a>
impl<'a> Unpin for SetModifierMapping<'a>
impl<'a> UnwindSafe for SetModifierMapping<'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