pub struct StickyKeysConfiguration {
pub enabled: bool,
pub should_disable_if_two_keys_are_pressed_together: Option<bool>,
}Expand description
Sticky keys (accessibility) configuration.
Fields§
§enabled: bool§should_disable_if_two_keys_are_pressed_together: Option<bool>Trait Implementations§
Source§impl Clone for StickyKeysConfiguration
impl Clone for StickyKeysConfiguration
Source§fn clone(&self) -> StickyKeysConfiguration
fn clone(&self) -> StickyKeysConfiguration
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 StickyKeysConfiguration
impl Debug for StickyKeysConfiguration
Source§impl Default for StickyKeysConfiguration
impl Default for StickyKeysConfiguration
Source§fn default() -> StickyKeysConfiguration
fn default() -> StickyKeysConfiguration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StickyKeysConfiguration
impl RefUnwindSafe for StickyKeysConfiguration
impl Send for StickyKeysConfiguration
impl Sync for StickyKeysConfiguration
impl Unpin for StickyKeysConfiguration
impl UnwindSafe for StickyKeysConfiguration
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