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
SelectSelect All (CTRL-A)
CopyCopy (CTRL-C)
CancelCancel (ALT-C)
DeleteDelete (SHIFT-BACKSPACE)
FindFind (CTRL-F)
HelpHelp
InfoInfo
BackThis 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.
QuitThis 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
CloseClose (Ctrl-W)
Open(Option<&'static str>)Open (Ctrl-O)
Share (Ctrl-S)
SaveCopySave Copy (Ctrl-Shift-S)
UndoUndo (Ctrl-Z)
RedoRedo (Ctrl-Shift-Z or Ctrl-Y)
CutCut (Ctrl-X)
PastePaste (Ctrl-V)
PrintPrint (Ctrl-P)
Trait Implementations
impl PartialEq for Msg[src]
fn eq(&self, __arg_0: &Msg) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Msg) -> bool[src]
This method tests for !=.
impl Copy for Msg[src]
impl Clone for Msg[src]
fn clone(&self) -> Msg[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more