#[non_exhaustive]#[repr(u16)]pub enum BandedExercisesExerciseName {
Show 60 variants
AbTwist = 1,
BackExtension = 2,
BicycleCrunch = 3,
CalfRaises = 4,
ChestPress = 5,
ClamShells = 6,
Curl = 7,
Deadbug = 8,
Deadlift = 9,
DonkeyKick = 10,
ExternalRotation = 11,
ExternalRotationAt90DegreeAbduction = 12,
FacePull = 13,
FireHydrant = 14,
Fly = 15,
FrontRaise = 16,
GluteBridge = 17,
HamstringCurls = 18,
HighPlankLegLifts = 19,
HipExtension = 20,
InternalRotation = 21,
JumpingJack = 22,
KneelingCrunch = 23,
LateralBandWalks = 24,
LateralRaise = 25,
Latpull = 26,
LegAbduction = 27,
LegAdduction = 28,
LegExtension = 29,
Lunge = 30,
Plank = 31,
PullApart = 32,
PushUps = 33,
ReverseCrunch = 34,
Row = 35,
ShoulderAbduction = 36,
ShoulderExtension = 37,
ShoulderExternalRotation = 38,
ShoulderFlexionTo90Degrees = 39,
SidePlankLegLifts = 40,
SideRaise = 41,
Squat = 42,
SquatToPress = 43,
TricepExtension = 44,
TricepKickback = 45,
UprightRow = 46,
WallCrawlWithExternalRotation = 47,
LateralRaiseWheelchair = 49,
TricepsExtensionWheelchair = 50,
ChestFlyInclineWheelchair = 51,
ChestFlyDeclineWheelchair = 52,
PullDownWheelchair = 53,
StraightArmPullDownWheelchair = 54,
CurlWheelchair = 55,
OverheadCurlWheelchair = 56,
FacePullWheelchair = 57,
AroundTheWorldWheelchair = 58,
PullApartWheelchair = 59,
SideCurlWheelchair = 60,
OverheadPressWheelchair = 61,
}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.
AbTwist = 1
BackExtension = 2
BicycleCrunch = 3
CalfRaises = 4
ChestPress = 5
ClamShells = 6
Curl = 7
Deadbug = 8
Deadlift = 9
DonkeyKick = 10
ExternalRotation = 11
ExternalRotationAt90DegreeAbduction = 12
FacePull = 13
FireHydrant = 14
Fly = 15
FrontRaise = 16
GluteBridge = 17
HamstringCurls = 18
HighPlankLegLifts = 19
HipExtension = 20
InternalRotation = 21
JumpingJack = 22
KneelingCrunch = 23
LateralBandWalks = 24
LateralRaise = 25
Latpull = 26
LegAbduction = 27
LegAdduction = 28
LegExtension = 29
Lunge = 30
Plank = 31
PullApart = 32
PushUps = 33
ReverseCrunch = 34
Row = 35
ShoulderAbduction = 36
ShoulderExtension = 37
ShoulderExternalRotation = 38
ShoulderFlexionTo90Degrees = 39
SidePlankLegLifts = 40
SideRaise = 41
Squat = 42
SquatToPress = 43
TricepExtension = 44
TricepKickback = 45
UprightRow = 46
WallCrawlWithExternalRotation = 47
LateralRaiseWheelchair = 49
TricepsExtensionWheelchair = 50
ChestFlyInclineWheelchair = 51
ChestFlyDeclineWheelchair = 52
PullDownWheelchair = 53
StraightArmPullDownWheelchair = 54
CurlWheelchair = 55
OverheadCurlWheelchair = 56
FacePullWheelchair = 57
AroundTheWorldWheelchair = 58
PullApartWheelchair = 59
SideCurlWheelchair = 60
OverheadPressWheelchair = 61
Implementations§
Trait Implementations§
Source§impl Clone for BandedExercisesExerciseName
impl Clone for BandedExercisesExerciseName
Source§fn clone(&self) -> BandedExercisesExerciseName
fn clone(&self) -> BandedExercisesExerciseName
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 BandedExercisesExerciseName
impl Debug for BandedExercisesExerciseName
Source§impl Hash for BandedExercisesExerciseName
impl Hash for BandedExercisesExerciseName
Source§impl PartialEq for BandedExercisesExerciseName
impl PartialEq for BandedExercisesExerciseName
Source§fn eq(&self, other: &BandedExercisesExerciseName) -> bool
fn eq(&self, other: &BandedExercisesExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BandedExercisesExerciseName
impl Eq for BandedExercisesExerciseName
impl StructuralPartialEq for BandedExercisesExerciseName
Auto Trait Implementations§
impl Freeze for BandedExercisesExerciseName
impl RefUnwindSafe for BandedExercisesExerciseName
impl Send for BandedExercisesExerciseName
impl Sync for BandedExercisesExerciseName
impl Unpin for BandedExercisesExerciseName
impl UnsafeUnpin for BandedExercisesExerciseName
impl UnwindSafe for BandedExercisesExerciseName
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