pub enum StandardShortcut {
Copy,
Cut,
Paste,
SelectAll,
Find,
Save,
Print,
Undo,
Redo,
Refresh,
}
Expand description
Represents a non context specific shortcut.
Variants§
Copy
Copy Something
Cut
Cut Something
Paste
Paste Something
SelectAll
Select All
Find
Find/Search Something
Save
Save Something
Print Something
Undo
Undo the last action
Redo
Redo the last undone action
Refresh
Refresh
Auto Trait Implementations§
impl Freeze for StandardShortcut
impl RefUnwindSafe for StandardShortcut
impl Send for StandardShortcut
impl Sync for StandardShortcut
impl Unpin for StandardShortcut
impl UnwindSafe for StandardShortcut
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