pub enum MainMenuEntry {
Show 13 variants
Start,
Restore,
Instructions,
OrderingInfo,
FullScreenToggle,
EpisodeChange,
HighScores,
Previews,
ViewUserDemo,
TitleScreen,
Credits,
Quit,
Invalid,
}Variants§
Start
Restore
Instructions
OrderingInfo
FullScreenToggle
EpisodeChange
HighScores
Previews
ViewUserDemo
TitleScreen
Credits
Quit
Invalid
Trait Implementations§
Source§impl Clone for MainMenuEntry
impl Clone for MainMenuEntry
Source§fn clone(&self) -> MainMenuEntry
fn clone(&self) -> MainMenuEntry
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 moreSource§impl Debug for MainMenuEntry
impl Debug for MainMenuEntry
Source§impl From<MainMenuEntry> for MenuEntry
impl From<MainMenuEntry> for MenuEntry
Source§fn from(entry: MainMenuEntry) -> MenuEntry
fn from(entry: MainMenuEntry) -> MenuEntry
Converts to this type from the input type.
Source§impl From<MainMenuEntry> for char
impl From<MainMenuEntry> for char
Source§fn from(entry: MainMenuEntry) -> char
fn from(entry: MainMenuEntry) -> char
Converts to this type from the input type.
Source§impl From<char> for MainMenuEntry
impl From<char> for MainMenuEntry
Source§fn from(c: char) -> MainMenuEntry
fn from(c: char) -> MainMenuEntry
Converts to this type from the input type.
Source§impl PartialEq for MainMenuEntry
impl PartialEq for MainMenuEntry
impl Copy for MainMenuEntry
impl Eq for MainMenuEntry
impl StructuralPartialEq for MainMenuEntry
Auto Trait Implementations§
impl Freeze for MainMenuEntry
impl RefUnwindSafe for MainMenuEntry
impl Send for MainMenuEntry
impl Sync for MainMenuEntry
impl Unpin for MainMenuEntry
impl UnwindSafe for MainMenuEntry
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