Struct tauri_runtime::menu::CustomMenuItem [−][src]
#[non_exhaustive]pub struct CustomMenuItem<I: MenuId> { pub id: I, pub title: String, pub keyboard_accelerator: Option<String>, pub enabled: bool, pub selected: bool, }
This is supported on crate features
menu or system-tray only.Expand description
A custom menu item.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Ititle: Stringkeyboard_accelerator: Option<String>enabled: boolselected: boolImplementations
Assign a keyboard shortcut to the menu action.
Trait Implementations
Auto Trait Implementations
impl<I> RefUnwindSafe for CustomMenuItem<I> where
I: RefUnwindSafe, impl<I> Send for CustomMenuItem<I>impl<I> Sync for CustomMenuItem<I>impl<I> Unpin for CustomMenuItem<I> where
I: Unpin, impl<I> UnwindSafe for CustomMenuItem<I> where
I: UnwindSafe, Blanket Implementations
Mutably borrows from an owned value. Read more