Enum awi::Msg [] [src]

pub enum Msg {
    Select,
    Copy,
    Cancel,
    Delete,
    Find,
    Help,
    Info,
    Back,
    Quit,
    Close,
    Open(Option<&'static str>),
    Share,
    SaveCopy,
    Undo,
    Redo,
    Cut,
    Paste,
    Print,
}

A Keyboard Shortcut

Variants

Select All (CTRL-A)

Copy (CTRL-C)

Cancel (ALT-C)

Delete (SHIFT-BACKSPACE)

Find (CTRL-F)

Help

Info

This message is generated by a request to exit the current screen. A request to exit the current screen is defined as,

  • pressing escape on a keyboard
  • pressing the back key on a cell phone.

This message is generated by a request to exit the app. A request to ext the app is defined as,

  • clicking the 'X' button on the app's window
  • typing the keyboard shortcut Ctrl-Q

Close (Ctrl-W)

Open (Ctrl-O)

Share (Ctrl-S)

Save Copy (Ctrl-Shift-S)

Undo (Ctrl-Z)

Redo (Ctrl-Shift-Z or Ctrl-Y)

Cut (Ctrl-X)

Paste (Ctrl-V)

Print (Ctrl-P)

Trait Implementations

impl PartialEq for Msg
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Copy for Msg
[src]

impl Clone for Msg
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for Msg
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Msg

impl Sync for Msg