pub enum GameHighScores {
GameHighScores(GameHighScores),
}Variants§
GameHighScores(GameHighScores)
Contains a list of game high scores
Trait Implementations§
Source§impl Clone for GameHighScores
impl Clone for GameHighScores
Source§fn clone(&self) -> GameHighScores
fn clone(&self) -> GameHighScores
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 GameHighScores
impl Debug for GameHighScores
Source§impl<'de> Deserialize<'de> for GameHighScores
impl<'de> Deserialize<'de> for GameHighScores
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GameHighScores
impl PartialEq for GameHighScores
Source§impl Serialize for GameHighScores
impl Serialize for GameHighScores
impl StructuralPartialEq for GameHighScores
Auto Trait Implementations§
impl Freeze for GameHighScores
impl RefUnwindSafe for GameHighScores
impl Send for GameHighScores
impl Sync for GameHighScores
impl Unpin for GameHighScores
impl UnwindSafe for GameHighScores
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