#[repr(C)]pub struct _XkbControls {Show 22 fields
pub mk_dflt_btn: u8,
pub num_groups: u8,
pub groups_wrap: u8,
pub internal: _XkbMods,
pub ignore_loc: _XkbMods,
pub enabled_ctrls: u32,
pub repeat_delay: u16,
pub repeat_interval: u16,
pub slow_keys_delay: u16,
pub debounce_delay: u16,
pub mk_delay: u16,
pub mk_interval: u16,
pub mk_time_to_max: u16,
pub mk_max_speed: u16,
pub mk_curve: i16,
pub ax_options: u16,
pub ax_timeout: u16,
pub axt_opts_mask: u16,
pub axt_opts_values: u16,
pub axt_ctrls_mask: u32,
pub axt_ctrls_values: u32,
pub per_key_repeat: [u8; 32],
}Fields§
§mk_dflt_btn: u8§num_groups: u8§groups_wrap: u8§internal: _XkbMods§ignore_loc: _XkbMods§enabled_ctrls: u32§repeat_delay: u16§repeat_interval: u16§slow_keys_delay: u16§debounce_delay: u16§mk_delay: u16§mk_interval: u16§mk_time_to_max: u16§mk_max_speed: u16§mk_curve: i16§ax_options: u16§ax_timeout: u16§axt_opts_mask: u16§axt_opts_values: u16§axt_ctrls_mask: u32§axt_ctrls_values: u32§per_key_repeat: [u8; 32]Auto Trait Implementations§
impl Freeze for _XkbControls
impl RefUnwindSafe for _XkbControls
impl Send for _XkbControls
impl Sync for _XkbControls
impl Unpin for _XkbControls
impl UnwindSafe for _XkbControls
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.