pub struct MenuOption {
pub code: u8,
pub title: String,
pub on_select: Box<dyn Fn()>,
}Fields§
§code: u8§title: String§on_select: Box<dyn Fn()>Implementations§
Source§impl MenuOption
impl MenuOption
Auto Trait Implementations§
impl !RefUnwindSafe for MenuOption
impl !Send for MenuOption
impl !Sync for MenuOption
impl !UnwindSafe for MenuOption
impl Freeze for MenuOption
impl Unpin for MenuOption
impl UnsafeUnpin for MenuOption
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