Struct x11rb_protocol::protocol::xkb::GetControlsReply
source · pub struct GetControlsReply {Show 29 fields
pub device_id: u8,
pub sequence: u16,
pub length: u32,
pub mouse_keys_dflt_btn: u8,
pub num_groups: u8,
pub groups_wrap: u8,
pub internal_mods_mask: ModMask,
pub ignore_lock_mods_mask: ModMask,
pub internal_mods_real_mods: ModMask,
pub ignore_lock_mods_real_mods: ModMask,
pub internal_mods_vmods: VMod,
pub ignore_lock_mods_vmods: VMod,
pub repeat_delay: u16,
pub repeat_interval: u16,
pub slow_keys_delay: u16,
pub debounce_delay: u16,
pub mouse_keys_delay: u16,
pub mouse_keys_interval: u16,
pub mouse_keys_time_to_max: u16,
pub mouse_keys_max_speed: u16,
pub mouse_keys_curve: i16,
pub access_x_option: AXOption,
pub access_x_timeout: u16,
pub access_x_timeout_options_mask: AXOption,
pub access_x_timeout_options_values: AXOption,
pub access_x_timeout_mask: BoolCtrl,
pub access_x_timeout_values: BoolCtrl,
pub enabled_controls: BoolCtrl,
pub per_key_repeat: [u8; 32],
}
Fields§
§device_id: u8
§sequence: u16
§length: u32
§mouse_keys_dflt_btn: u8
§num_groups: u8
§groups_wrap: u8
§internal_mods_mask: ModMask
§ignore_lock_mods_mask: ModMask
§internal_mods_real_mods: ModMask
§ignore_lock_mods_real_mods: ModMask
§internal_mods_vmods: VMod
§ignore_lock_mods_vmods: VMod
§repeat_delay: u16
§repeat_interval: u16
§slow_keys_delay: u16
§debounce_delay: u16
§mouse_keys_delay: u16
§mouse_keys_interval: u16
§mouse_keys_time_to_max: u16
§mouse_keys_max_speed: u16
§mouse_keys_curve: i16
§access_x_option: AXOption
§access_x_timeout: u16
§access_x_timeout_options_mask: AXOption
§access_x_timeout_options_values: AXOption
§access_x_timeout_mask: BoolCtrl
§access_x_timeout_values: BoolCtrl
§enabled_controls: BoolCtrl
§per_key_repeat: [u8; 32]
Trait Implementations§
source§impl Clone for GetControlsReply
impl Clone for GetControlsReply
source§fn clone(&self) -> GetControlsReply
fn clone(&self) -> GetControlsReply
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 Debug for GetControlsReply
impl Debug for GetControlsReply
source§impl Default for GetControlsReply
impl Default for GetControlsReply
source§fn default() -> GetControlsReply
fn default() -> GetControlsReply
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetControlsReply
impl<'de> Deserialize<'de> for GetControlsReply
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<GetControlsReply> for Reply
impl From<GetControlsReply> for Reply
source§fn from(reply: GetControlsReply) -> Reply
fn from(reply: GetControlsReply) -> Reply
Converts to this type from the input type.
source§impl Hash for GetControlsReply
impl Hash for GetControlsReply
source§impl Ord for GetControlsReply
impl Ord for GetControlsReply
source§fn cmp(&self, other: &GetControlsReply) -> Ordering
fn cmp(&self, other: &GetControlsReply) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for GetControlsReply
impl PartialEq for GetControlsReply
source§fn eq(&self, other: &GetControlsReply) -> bool
fn eq(&self, other: &GetControlsReply) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for GetControlsReply
impl PartialOrd for GetControlsReply
source§fn partial_cmp(&self, other: &GetControlsReply) -> Option<Ordering>
fn partial_cmp(&self, other: &GetControlsReply) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for GetControlsReply
impl Serialize for GetControlsReply
source§impl Serialize for GetControlsReply
impl Serialize for GetControlsReply
source§impl TryParse for GetControlsReply
impl TryParse for GetControlsReply
impl Copy for GetControlsReply
impl Eq for GetControlsReply
impl StructuralPartialEq for GetControlsReply
Auto Trait Implementations§
impl Freeze for GetControlsReply
impl RefUnwindSafe for GetControlsReply
impl Send for GetControlsReply
impl Sync for GetControlsReply
impl Unpin for GetControlsReply
impl UnwindSafe for GetControlsReply
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
source§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
source§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<OwnedFd>
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<OwnedFd> ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more