pub struct GetKbdByNameRepliesKeyNamesValueList {
Show 14 fields pub keycodes_name: Option<Atom>, pub geometry_name: Option<Atom>, pub symbols_name: Option<Atom>, pub phys_symbols_name: Option<Atom>, pub types_name: Option<Atom>, pub compat_name: Option<Atom>, pub type_names: Option<Vec<Atom>>, pub kt_level_names: Option<GetKbdByNameRepliesKeyNamesValueListKTLevelNames>, pub indicator_names: Option<Vec<Atom>>, pub virtual_mod_names: Option<Vec<Atom>>, pub groups: Option<Vec<Atom>>, pub key_names: Option<Vec<KeyName>>, pub key_aliases: Option<Vec<KeyAlias>>, pub radio_group_names: Option<Vec<Atom>>,
}

Fields§

§keycodes_name: Option<Atom>§geometry_name: Option<Atom>§symbols_name: Option<Atom>§phys_symbols_name: Option<Atom>§types_name: Option<Atom>§compat_name: Option<Atom>§type_names: Option<Vec<Atom>>§kt_level_names: Option<GetKbdByNameRepliesKeyNamesValueListKTLevelNames>§indicator_names: Option<Vec<Atom>>§virtual_mod_names: Option<Vec<Atom>>§groups: Option<Vec<Atom>>§key_names: Option<Vec<KeyName>>§key_aliases: Option<Vec<KeyAlias>>§radio_group_names: Option<Vec<Atom>>

Implementations§

source§

impl GetKbdByNameRepliesKeyNamesValueList

source

fn try_parse( value: &[u8], which: u32, n_types: u8, indicators: u32, virtual_mods: u16, group_names: u8, n_keys: u8, n_key_aliases: u8, n_radio_groups: u8, ) -> Result<(Self, &[u8]), ParseError>

source§

impl GetKbdByNameRepliesKeyNamesValueList

source

fn serialize( &self, which: u32, n_types: u8, indicators: u32, virtual_mods: u16, group_names: u8, n_keys: u8, n_key_aliases: u8, n_radio_groups: u8, ) -> Vec<u8>

source

fn serialize_into( &self, bytes: &mut Vec<u8>, which: u32, n_types: u8, indicators: u32, virtual_mods: u16, group_names: u8, n_keys: u8, n_key_aliases: u8, n_radio_groups: u8, )

source§

impl GetKbdByNameRepliesKeyNamesValueList

source

fn switch_expr(&self) -> u32

Trait Implementations§

source§

impl Clone for GetKbdByNameRepliesKeyNamesValueList

source§

fn clone(&self) -> GetKbdByNameRepliesKeyNamesValueList

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GetKbdByNameRepliesKeyNamesValueList

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GetKbdByNameRepliesKeyNamesValueList

source§

fn default() -> GetKbdByNameRepliesKeyNamesValueList

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.