#[non_exhaustive]#[repr(u16)]pub enum TricepsExtensionExerciseName {
Show 45 variants
BenchDip = 0,
WeightedBenchDip = 1,
BodyWeightDip = 2,
CableKickback = 3,
CableLyingTricepsExtension = 4,
CableOverheadTricepsExtension = 5,
DumbbellKickback = 6,
DumbbellLyingTricepsExtension = 7,
EzBarOverheadTricepsExtension = 8,
InclineDip = 9,
WeightedInclineDip = 10,
InclineEzBarLyingTricepsExtension = 11,
LyingDumbbellPulloverToExtension = 12,
LyingEzBarTricepsExtension = 13,
LyingTricepsExtensionToCloseGripBenchPress = 14,
OverheadDumbbellTricepsExtension = 15,
RecliningTricepsPress = 16,
ReverseGripPressdown = 17,
ReverseGripTricepsPressdown = 18,
RopePressdown = 19,
SeatedBarbellOverheadTricepsExtension = 20,
SeatedDumbbellOverheadTricepsExtension = 21,
SeatedEzBarOverheadTricepsExtension = 22,
SeatedSingleArmOverheadDumbbellExtension = 23,
SingleArmDumbbellOverheadTricepsExtension = 24,
SingleDumbbellSeatedOverheadTricepsExtension = 25,
SingleLegBenchDipAndKick = 26,
WeightedSingleLegBenchDipAndKick = 27,
SingleLegDip = 28,
WeightedSingleLegDip = 29,
StaticLyingTricepsExtension = 30,
SuspendedDip = 31,
WeightedSuspendedDip = 32,
SwissBallDumbbellLyingTricepsExtension = 33,
SwissBallEzBarLyingTricepsExtension = 34,
SwissBallEzBarOverheadTricepsExtension = 35,
TabletopDip = 36,
WeightedTabletopDip = 37,
TricepsExtensionOnFloor = 38,
TricepsPressdown = 39,
WeightedDip = 40,
AlternatingDumbbellLyingTricepsExtension = 41,
TricepsPress = 42,
DumbbellKickbackWheelchair = 43,
OverheadDumbbellTricepsExtensionWheelchair = 44,
}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.
BenchDip = 0
WeightedBenchDip = 1
BodyWeightDip = 2
CableKickback = 3
CableLyingTricepsExtension = 4
CableOverheadTricepsExtension = 5
DumbbellKickback = 6
DumbbellLyingTricepsExtension = 7
EzBarOverheadTricepsExtension = 8
InclineDip = 9
WeightedInclineDip = 10
InclineEzBarLyingTricepsExtension = 11
LyingDumbbellPulloverToExtension = 12
LyingEzBarTricepsExtension = 13
LyingTricepsExtensionToCloseGripBenchPress = 14
OverheadDumbbellTricepsExtension = 15
RecliningTricepsPress = 16
ReverseGripPressdown = 17
ReverseGripTricepsPressdown = 18
RopePressdown = 19
SeatedBarbellOverheadTricepsExtension = 20
SeatedDumbbellOverheadTricepsExtension = 21
SeatedEzBarOverheadTricepsExtension = 22
SeatedSingleArmOverheadDumbbellExtension = 23
SingleArmDumbbellOverheadTricepsExtension = 24
SingleDumbbellSeatedOverheadTricepsExtension = 25
SingleLegBenchDipAndKick = 26
WeightedSingleLegBenchDipAndKick = 27
SingleLegDip = 28
WeightedSingleLegDip = 29
StaticLyingTricepsExtension = 30
SuspendedDip = 31
WeightedSuspendedDip = 32
SwissBallDumbbellLyingTricepsExtension = 33
SwissBallEzBarLyingTricepsExtension = 34
SwissBallEzBarOverheadTricepsExtension = 35
TabletopDip = 36
WeightedTabletopDip = 37
TricepsExtensionOnFloor = 38
TricepsPressdown = 39
WeightedDip = 40
AlternatingDumbbellLyingTricepsExtension = 41
TricepsPress = 42
DumbbellKickbackWheelchair = 43
OverheadDumbbellTricepsExtensionWheelchair = 44
Implementations§
Trait Implementations§
Source§impl Clone for TricepsExtensionExerciseName
impl Clone for TricepsExtensionExerciseName
Source§fn clone(&self) -> TricepsExtensionExerciseName
fn clone(&self) -> TricepsExtensionExerciseName
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 TricepsExtensionExerciseName
impl Debug for TricepsExtensionExerciseName
Source§impl Hash for TricepsExtensionExerciseName
impl Hash for TricepsExtensionExerciseName
Source§impl PartialEq for TricepsExtensionExerciseName
impl PartialEq for TricepsExtensionExerciseName
Source§fn eq(&self, other: &TricepsExtensionExerciseName) -> bool
fn eq(&self, other: &TricepsExtensionExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TricepsExtensionExerciseName
impl Eq for TricepsExtensionExerciseName
impl StructuralPartialEq for TricepsExtensionExerciseName
Auto Trait Implementations§
impl Freeze for TricepsExtensionExerciseName
impl RefUnwindSafe for TricepsExtensionExerciseName
impl Send for TricepsExtensionExerciseName
impl Sync for TricepsExtensionExerciseName
impl Unpin for TricepsExtensionExerciseName
impl UnsafeUnpin for TricepsExtensionExerciseName
impl UnwindSafe for TricepsExtensionExerciseName
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