pub struct MenuPage<'a> {
pub basic: BasicPage,
pub sub_titles: ArrayString<100>,
/* private fields */
}Expand description
A menu page organizes navigation to sub pages
A menu pages lists the titles of the sub-pages and allows navigation to a specific sub-page
Fields§
§basic: BasicPage§sub_titles: ArrayString<100>Implementations§
Trait Implementations§
Source§impl PageBaseInterface for MenuPage<'_>
impl PageBaseInterface for MenuPage<'_>
Source§impl PageInteractionInterface for MenuPage<'_>
impl PageInteractionInterface for MenuPage<'_>
Source§fn dispatch(&mut self, interaction: Interaction) -> PageNavigation
fn dispatch(&mut self, interaction: Interaction) -> PageNavigation
Handle page interaction Read more
Auto Trait Implementations§
impl<'a> Freeze for MenuPage<'a>
impl<'a> RefUnwindSafe for MenuPage<'a>
impl<'a> Send for MenuPage<'a>
impl<'a> Sync for MenuPage<'a>
impl<'a> Unpin for MenuPage<'a>
impl<'a> UnwindSafe for MenuPage<'a>
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