#[non_exhaustive]#[repr(u16)]pub enum PullUpExerciseName {
Show 46 variants
BandedPullUps = 0,
_30DegreeLatPulldown = 1,
BandAssistedChinUp = 2,
CloseGripChinUp = 3,
WeightedCloseGripChinUp = 4,
CloseGripLatPulldown = 5,
CrossoverChinUp = 6,
WeightedCrossoverChinUp = 7,
EzBarPullover = 8,
HangingHurdle = 9,
WeightedHangingHurdle = 10,
KneelingLatPulldown = 11,
KneelingUnderhandGripLatPulldown = 12,
LatPulldown = 13,
MixedGripChinUp = 14,
WeightedMixedGripChinUp = 15,
MixedGripPullUp = 16,
WeightedMixedGripPullUp = 17,
ReverseGripPulldown = 18,
StandingCablePullover = 19,
StraightArmPulldown = 20,
SwissBallEzBarPullover = 21,
TowelPullUp = 22,
WeightedTowelPullUp = 23,
WeightedPullUp = 24,
WideGripLatPulldown = 25,
WideGripPullUp = 26,
WeightedWideGripPullUp = 27,
BurpeePullUp = 28,
WeightedBurpeePullUp = 29,
JumpingPullUps = 30,
WeightedJumpingPullUps = 31,
KippingPullUp = 32,
WeightedKippingPullUp = 33,
LPullUp = 34,
WeightedLPullUp = 35,
SuspendedChinUp = 36,
WeightedSuspendedChinUp = 37,
PullUp = 38,
ChinUp = 39,
NeutralGripChinUp = 40,
WeightedChinUp = 41,
BandAssistedPullUp = 42,
NeutralGripPullUp = 43,
WeightedNeutralGripChinUp = 44,
WeightedNeutralGripPullUp = 45,
}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.
BandedPullUps = 0
_30DegreeLatPulldown = 1
BandAssistedChinUp = 2
CloseGripChinUp = 3
WeightedCloseGripChinUp = 4
CloseGripLatPulldown = 5
CrossoverChinUp = 6
WeightedCrossoverChinUp = 7
EzBarPullover = 8
HangingHurdle = 9
WeightedHangingHurdle = 10
KneelingLatPulldown = 11
KneelingUnderhandGripLatPulldown = 12
LatPulldown = 13
MixedGripChinUp = 14
WeightedMixedGripChinUp = 15
MixedGripPullUp = 16
WeightedMixedGripPullUp = 17
ReverseGripPulldown = 18
StandingCablePullover = 19
StraightArmPulldown = 20
SwissBallEzBarPullover = 21
TowelPullUp = 22
WeightedTowelPullUp = 23
WeightedPullUp = 24
WideGripLatPulldown = 25
WideGripPullUp = 26
WeightedWideGripPullUp = 27
BurpeePullUp = 28
WeightedBurpeePullUp = 29
JumpingPullUps = 30
WeightedJumpingPullUps = 31
KippingPullUp = 32
WeightedKippingPullUp = 33
LPullUp = 34
WeightedLPullUp = 35
SuspendedChinUp = 36
WeightedSuspendedChinUp = 37
PullUp = 38
ChinUp = 39
NeutralGripChinUp = 40
WeightedChinUp = 41
BandAssistedPullUp = 42
NeutralGripPullUp = 43
WeightedNeutralGripChinUp = 44
WeightedNeutralGripPullUp = 45
Implementations§
Trait Implementations§
Source§impl Clone for PullUpExerciseName
impl Clone for PullUpExerciseName
Source§fn clone(&self) -> PullUpExerciseName
fn clone(&self) -> PullUpExerciseName
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 PullUpExerciseName
impl Debug for PullUpExerciseName
Source§impl Hash for PullUpExerciseName
impl Hash for PullUpExerciseName
Source§impl PartialEq for PullUpExerciseName
impl PartialEq for PullUpExerciseName
Source§fn eq(&self, other: &PullUpExerciseName) -> bool
fn eq(&self, other: &PullUpExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PullUpExerciseName
impl Eq for PullUpExerciseName
impl StructuralPartialEq for PullUpExerciseName
Auto Trait Implementations§
impl Freeze for PullUpExerciseName
impl RefUnwindSafe for PullUpExerciseName
impl Send for PullUpExerciseName
impl Sync for PullUpExerciseName
impl Unpin for PullUpExerciseName
impl UnsafeUnpin for PullUpExerciseName
impl UnwindSafe for PullUpExerciseName
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