#[repr(u16)]pub enum GameAndWatch {
Show 40 variants
Jab = 341,
RapidJabsStart = 342,
RapidJabsLoop = 343,
RapidJabsEnd = 344,
DownTilt = 345,
SideSmash = 346,
Nair = 347,
Bair = 348,
Uair = 349,
NairLanding = 350,
BairLanding = 351,
UairLanding = 352,
ChefGround = 353,
ChefAir = 354,
Judgment1Ground = 355,
Judgment2Ground = 356,
Judgment3Ground = 357,
Judgment4Ground = 358,
Judgment5Ground = 359,
Judgment6Ground = 360,
Judgment7Ground = 361,
Judgment8Ground = 362,
Judgment9Ground = 363,
Judgment1Air = 364,
Judgment2Air = 365,
Judgment3Air = 366,
Judgment4Air = 367,
Judgment5Air = 368,
Judgment6Air = 369,
Judgment7Air = 370,
Judgment8Air = 371,
Judgment9Air = 372,
FireGround = 373,
FireAir = 374,
OilPanicGround = 375,
OilPanicGroundAbsorb = 376,
OilPanicGroundSpill = 377,
OilPanicAir = 378,
OilPanicAirAbsorb = 379,
OilPanicAirSpill = 380,
}Variants§
Jab = 341
RapidJabsStart = 342
RapidJabsLoop = 343
RapidJabsEnd = 344
DownTilt = 345
SideSmash = 346
Nair = 347
Bair = 348
Uair = 349
NairLanding = 350
BairLanding = 351
UairLanding = 352
ChefGround = 353
ChefAir = 354
Judgment1Ground = 355
Judgment2Ground = 356
Judgment3Ground = 357
Judgment4Ground = 358
Judgment5Ground = 359
Judgment6Ground = 360
Judgment7Ground = 361
Judgment8Ground = 362
Judgment9Ground = 363
Judgment1Air = 364
Judgment2Air = 365
Judgment3Air = 366
Judgment4Air = 367
Judgment5Air = 368
Judgment6Air = 369
Judgment7Air = 370
Judgment8Air = 371
Judgment9Air = 372
FireGround = 373
FireAir = 374
OilPanicGround = 375
OilPanicGroundAbsorb = 376
OilPanicGroundSpill = 377
OilPanicAir = 378
OilPanicAirAbsorb = 379
OilPanicAirSpill = 380
Trait Implementations§
Source§impl Clone for GameAndWatch
impl Clone for GameAndWatch
Source§fn clone(&self) -> GameAndWatch
fn clone(&self) -> GameAndWatch
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 GameAndWatch
impl Debug for GameAndWatch
Source§impl PartialEq for GameAndWatch
impl PartialEq for GameAndWatch
Source§impl TryFrom<u16> for GameAndWatch
impl TryFrom<u16> for GameAndWatch
Source§type Error = TryFromPrimitiveError<GameAndWatch>
type Error = TryFromPrimitiveError<GameAndWatch>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for GameAndWatch
impl TryFromPrimitive for GameAndWatch
const NAME: &'static str = "GameAndWatch"
type Primitive = u16
type Error = TryFromPrimitiveError<GameAndWatch>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for GameAndWatch
impl Eq for GameAndWatch
impl StructuralPartialEq for GameAndWatch
Auto Trait Implementations§
impl Freeze for GameAndWatch
impl RefUnwindSafe for GameAndWatch
impl Send for GameAndWatch
impl Sync for GameAndWatch
impl Unpin for GameAndWatch
impl UnwindSafe for GameAndWatch
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