pub enum GetKbdByNameReplyRepliesMap {
KeyTypes(Vec<KeyTypeBuf>),
KeySyms(Vec<KeySymMapBuf>),
KeyActions {
acts_rtrn_count: Vec<u8>,
acts_rtrn_acts: Vec<Action>,
},
KeyBehaviors(Vec<SetBehavior>),
VirtualMods(Vec<ModMask>),
ExplicitComponents(Vec<SetExplicit>),
ModifierMap(Vec<KeyModMap>),
VirtualModMap(Vec<KeyVModMap>),
}
Variants§
KeyTypes(Vec<KeyTypeBuf>)
KeySyms(Vec<KeySymMapBuf>)
KeyActions
KeyBehaviors(Vec<SetBehavior>)
VirtualMods(Vec<ModMask>)
ExplicitComponents(Vec<SetExplicit>)
ModifierMap(Vec<KeyModMap>)
VirtualModMap(Vec<KeyVModMap>)
Trait Implementations§
Source§impl Clone for GetKbdByNameReplyRepliesMap
impl Clone for GetKbdByNameReplyRepliesMap
Source§fn clone(&self) -> GetKbdByNameReplyRepliesMap
fn clone(&self) -> GetKbdByNameReplyRepliesMap
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 moreAuto Trait Implementations§
impl Freeze for GetKbdByNameReplyRepliesMap
impl RefUnwindSafe for GetKbdByNameReplyRepliesMap
impl Send for GetKbdByNameReplyRepliesMap
impl Sync for GetKbdByNameReplyRepliesMap
impl Unpin for GetKbdByNameReplyRepliesMap
impl UnwindSafe for GetKbdByNameReplyRepliesMap
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