Enum wry::application::accelerator::SysMods
source · [−]#[non_exhaustive]
pub enum SysMods {
None,
Shift,
Cmd,
AltCmd,
CmdShift,
AltCmdShift,
}
Expand description
Represents the platform-agnostic keyboard modifiers, for command handling.
This does one thing: it allows specifying accelerators that use the Command key on macOS, but use the Ctrl key on other platforms.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
Shift
Cmd
Command on macOS, and Ctrl on windows/linux
AltCmd
Command + Alt on macOS, Ctrl + Alt on windows/linux
CmdShift
Command + Shift on macOS, Ctrl + Shift on windows/linux
AltCmdShift
Command + Alt + Shift on macOS, Ctrl + Alt + Shift on windows/linux
Trait Implementations
sourceimpl From<SysMods> for ModifiersState
impl From<SysMods> for ModifiersState
sourcepub fn from(src: SysMods) -> ModifiersState
pub fn from(src: SysMods) -> ModifiersState
Performs the conversion.
impl Copy for SysMods
Auto Trait Implementations
impl RefUnwindSafe for SysMods
impl Send for SysMods
impl Sync for SysMods
impl Unpin for SysMods
impl UnwindSafe for SysMods
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more