Enum tauri_runtime::menu::MenuItem [−][src]
#[non_exhaustive] pub enum MenuItem<I: MenuId> {}Show variants
Custom(CustomMenuItem<I>), About(String), Hide, Services, HideOthers, ShowAll, CloseWindow, Quit, Copy, Cut, Undo, Redo, SelectAll, Paste, EnterFullScreen, Minimize, Zoom, Separator,
menu
or system-tray
only.Expand description
A menu item, bound to a pre-defined action or Custom
emit an event. Note that status bar only
supports Custom
menu item variants. And on the menu bar, some platforms might not support some
of the variants. Unsupported variant will be no-op on such platform.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Custom(CustomMenuItem<I>)
Expand description
A custom menu item..
About(String)
Expand description
Expand description
Expand description
Expand description
A “hide all other windows” menu item.
Platform-specific
- Windows / Linux / Android / iOS: Unsupported
Expand description
A menu item to show all the windows for this app.
Platform-specific
- Windows / Linux / Android / iOS: Unsupported
Expand description
Expand description
Expand description
A menu item for enabling copying (often text) from responders.
Platform-specific
- Windows / Android / iOS: Unsupported
Expand description
A menu item for enabling cutting (often text) from responders.
Platform-specific
- Windows / Android / iOS: Unsupported
Expand description
An “undo” menu item; particularly useful for supporting the cut/copy/paste/undo lifecycle of events.
Platform-specific
- Windows / Linux / Android / iOS: Unsupported
Expand description
An “redo” menu item; particularly useful for supporting the cut/copy/paste/undo lifecycle of events.
Platform-specific
- Windows / Linux / Android / iOS: Unsupported
Expand description
A menu item for selecting all (often text) from responders.
Platform-specific
- Windows / Android / iOS: Unsupported
Expand description
A menu item for pasting (often text) into responders.
Platform-specific
- Windows / Android / iOS: Unsupported
Expand description
Expand description
An item for minimizing the window with the standard system controls.
Platform-specific
- Windows / Android / iOS: Unsupported
Expand description
An item for instructing the app to zoom
Platform-specific
- Windows / Linux / Android / iOS: Unsupported
Expand description
Trait Implementations
Auto Trait Implementations
impl<I> RefUnwindSafe for MenuItem<I> where
I: RefUnwindSafe,
I: RefUnwindSafe,
impl<I> Send for MenuItem<I>
impl<I> Sync for MenuItem<I>
impl<I> Unpin for MenuItem<I> where
I: Unpin,
I: Unpin,
impl<I> UnwindSafe for MenuItem<I> where
I: UnwindSafe,
I: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more