Enum dioxus_mobile::wry::application::accelerator::SysMods[]

#[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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.