#[non_exhaustive]#[repr(u16)]pub enum BattleRopeExerciseName {
Show 28 variants
AlternatingFigureEight = 0,
AlternatingJumpWave = 1,
AlternatingKneelingToStandingWave = 2,
AlternatingLungeWave = 3,
AlternatingSquatWave = 4,
AlternatingWave = 5,
AlternatingWaveWithLateralShuffle = 6,
ClapWave = 7,
DoubleArmFigureEight = 8,
DoubleArmSideToSideSnake = 9,
DoubleArmSideWave = 10,
DoubleArmSlam = 11,
DoubleArmWave = 12,
GrapplerToss = 13,
HipToss = 14,
InAndOutWave = 15,
InsideCircle = 16,
JumpingJacks = 17,
OutsideCircle = 18,
Rainbow = 19,
SidePlankWave = 20,
Sidewinder = 21,
SittingRussianTwist = 22,
SnakeWave = 23,
SplitJack = 24,
StageCoach = 25,
UltimateWarrior = 26,
UpperCuts = 27,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AlternatingFigureEight = 0
AlternatingJumpWave = 1
AlternatingKneelingToStandingWave = 2
AlternatingLungeWave = 3
AlternatingSquatWave = 4
AlternatingWave = 5
AlternatingWaveWithLateralShuffle = 6
ClapWave = 7
DoubleArmFigureEight = 8
DoubleArmSideToSideSnake = 9
DoubleArmSideWave = 10
DoubleArmSlam = 11
DoubleArmWave = 12
GrapplerToss = 13
HipToss = 14
InAndOutWave = 15
InsideCircle = 16
JumpingJacks = 17
OutsideCircle = 18
Rainbow = 19
SidePlankWave = 20
Sidewinder = 21
SittingRussianTwist = 22
SnakeWave = 23
SplitJack = 24
StageCoach = 25
UltimateWarrior = 26
UpperCuts = 27
Implementations§
Trait Implementations§
Source§impl Clone for BattleRopeExerciseName
impl Clone for BattleRopeExerciseName
Source§fn clone(&self) -> BattleRopeExerciseName
fn clone(&self) -> BattleRopeExerciseName
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BattleRopeExerciseName
impl Debug for BattleRopeExerciseName
Source§impl Hash for BattleRopeExerciseName
impl Hash for BattleRopeExerciseName
Source§impl PartialEq for BattleRopeExerciseName
impl PartialEq for BattleRopeExerciseName
Source§fn eq(&self, other: &BattleRopeExerciseName) -> bool
fn eq(&self, other: &BattleRopeExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BattleRopeExerciseName
impl Eq for BattleRopeExerciseName
impl StructuralPartialEq for BattleRopeExerciseName
Auto Trait Implementations§
impl Freeze for BattleRopeExerciseName
impl RefUnwindSafe for BattleRopeExerciseName
impl Send for BattleRopeExerciseName
impl Sync for BattleRopeExerciseName
impl Unpin for BattleRopeExerciseName
impl UnsafeUnpin for BattleRopeExerciseName
impl UnwindSafe for BattleRopeExerciseName
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