pub enum SubMenuItem {
Text(TextMenuItem),
Separator,
}Available on crate feature
ui only.Expand description
A submenu item.
Can be added with SubMenu::insert_menu_item.
Variants§
Text(TextMenuItem)
Separator
Trait Implementations§
Source§impl Clone for SubMenuItem
impl Clone for SubMenuItem
Source§fn clone(&self) -> SubMenuItem
fn clone(&self) -> SubMenuItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SubMenuItem
impl !RefUnwindSafe for SubMenuItem
impl !Send for SubMenuItem
impl !Sync for SubMenuItem
impl Unpin for SubMenuItem
impl !UnwindSafe for SubMenuItem
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