Struct tauri_runtime::menu::CustomMenuItem [−][src]
#[non_exhaustive]pub struct CustomMenuItem { pub id: MenuHash, pub id_str: MenuId, pub title: String, pub keyboard_accelerator: Option<String>, pub enabled: bool, pub selected: bool, }
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: MenuHashid_str: MenuIdtitle: Stringkeyboard_accelerator: Option<String>enabled: boolselected: boolImplementations
Create new custom menu item.
Assign a keyboard shortcut to the menu action.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CustomMenuItem
impl Send for CustomMenuItem
impl Sync for CustomMenuItem
impl Unpin for CustomMenuItem
impl UnwindSafe for CustomMenuItem
Blanket Implementations
Mutably borrows from an owned value. Read more