pub struct SlowKeysConfiguration {
pub enabled: bool,
pub hold_delay_ms: Option<u32>,
}Expand description
Slow keys (accessibility) configuration.
Fields§
§enabled: bool§hold_delay_ms: Option<u32>How long (ms) a key must be held before it registers.
Trait Implementations§
Source§impl Clone for SlowKeysConfiguration
impl Clone for SlowKeysConfiguration
Source§fn clone(&self) -> SlowKeysConfiguration
fn clone(&self) -> SlowKeysConfiguration
Returns a duplicate 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 SlowKeysConfiguration
impl Debug for SlowKeysConfiguration
Source§impl Default for SlowKeysConfiguration
impl Default for SlowKeysConfiguration
Source§fn default() -> SlowKeysConfiguration
fn default() -> SlowKeysConfiguration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SlowKeysConfiguration
impl RefUnwindSafe for SlowKeysConfiguration
impl Send for SlowKeysConfiguration
impl Sync for SlowKeysConfiguration
impl Unpin for SlowKeysConfiguration
impl UnwindSafe for SlowKeysConfiguration
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