Enum makepad_widgets::MacosMenu
pub enum MacosMenu {
Main {
items: Vec<MacosMenu, Global>,
},
Item {
name: String,
command: LiveId,
shift: bool,
key: KeyCode,
enabled: bool,
},
Sub {
name: String,
items: Vec<MacosMenu, Global>,
},
Line,
}
Variants§
Trait Implementations§
impl StructuralPartialEq for MacosMenu
Auto Trait Implementations§
impl RefUnwindSafe for MacosMenu
impl Send for MacosMenu
impl Sync for MacosMenu
impl Unpin for MacosMenu
impl UnwindSafe for MacosMenu
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