#[non_exhaustive]#[repr(u16)]pub enum SitUpExerciseName {
Show 41 variants
AlternatingSitUp = 0,
WeightedAlternatingSitUp = 1,
BentKneeVUp = 2,
WeightedBentKneeVUp = 3,
ButterflySitUp = 4,
WeightedButterflySitup = 5,
CrossPunchRollUp = 6,
WeightedCrossPunchRollUp = 7,
CrossedArmsSitUp = 8,
WeightedCrossedArmsSitUp = 9,
GetUpSitUp = 10,
WeightedGetUpSitUp = 11,
HoveringSitUp = 12,
WeightedHoveringSitUp = 13,
KettlebellSitUp = 14,
MedicineBallAlternatingVUp = 15,
MedicineBallSitUp = 16,
MedicineBallVUp = 17,
ModifiedSitUp = 18,
NegativeSitUp = 19,
OneArmFullSitUp = 20,
RecliningCircle = 21,
WeightedRecliningCircle = 22,
ReverseCurlUp = 23,
WeightedReverseCurlUp = 24,
SingleLegSwissBallJackknife = 25,
WeightedSingleLegSwissBallJackknife = 26,
TheTeaser = 27,
TheTeaserWeighted = 28,
ThreePartRollDown = 29,
WeightedThreePartRollDown = 30,
VUp = 31,
WeightedVUp = 32,
WeightedRussianTwistOnSwissBall = 33,
WeightedSitUp = 34,
XAbs = 35,
WeightedXAbs = 36,
SitUp = 37,
GhdSitUps = 38,
SitUpTurkishGetUp = 39,
RussianTwistOnSwissBall = 40,
}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.
AlternatingSitUp = 0
WeightedAlternatingSitUp = 1
BentKneeVUp = 2
WeightedBentKneeVUp = 3
ButterflySitUp = 4
WeightedButterflySitup = 5
CrossPunchRollUp = 6
WeightedCrossPunchRollUp = 7
CrossedArmsSitUp = 8
WeightedCrossedArmsSitUp = 9
GetUpSitUp = 10
WeightedGetUpSitUp = 11
HoveringSitUp = 12
WeightedHoveringSitUp = 13
KettlebellSitUp = 14
MedicineBallAlternatingVUp = 15
MedicineBallSitUp = 16
MedicineBallVUp = 17
ModifiedSitUp = 18
NegativeSitUp = 19
OneArmFullSitUp = 20
RecliningCircle = 21
WeightedRecliningCircle = 22
ReverseCurlUp = 23
WeightedReverseCurlUp = 24
SingleLegSwissBallJackknife = 25
WeightedSingleLegSwissBallJackknife = 26
ThreePartRollDown = 29
WeightedThreePartRollDown = 30
VUp = 31
WeightedVUp = 32
WeightedRussianTwistOnSwissBall = 33
WeightedSitUp = 34
XAbs = 35
WeightedXAbs = 36
SitUp = 37
GhdSitUps = 38
SitUpTurkishGetUp = 39
RussianTwistOnSwissBall = 40
Implementations§
Trait Implementations§
Source§impl Clone for SitUpExerciseName
impl Clone for SitUpExerciseName
Source§fn clone(&self) -> SitUpExerciseName
fn clone(&self) -> SitUpExerciseName
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 SitUpExerciseName
impl Debug for SitUpExerciseName
Source§impl Hash for SitUpExerciseName
impl Hash for SitUpExerciseName
Source§impl PartialEq for SitUpExerciseName
impl PartialEq for SitUpExerciseName
Source§fn eq(&self, other: &SitUpExerciseName) -> bool
fn eq(&self, other: &SitUpExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SitUpExerciseName
impl Eq for SitUpExerciseName
impl StructuralPartialEq for SitUpExerciseName
Auto Trait Implementations§
impl Freeze for SitUpExerciseName
impl RefUnwindSafe for SitUpExerciseName
impl Send for SitUpExerciseName
impl Sync for SitUpExerciseName
impl Unpin for SitUpExerciseName
impl UnsafeUnpin for SitUpExerciseName
impl UnwindSafe for SitUpExerciseName
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