#[non_exhaustive]#[repr(u16)]pub enum BenchPressExerciseName {
Show 27 variants
AlternatingDumbbellChestPressOnSwissBall = 0,
BarbellBenchPress = 1,
BarbellBoardBenchPress = 2,
BarbellFloorPress = 3,
CloseGripBarbellBenchPress = 4,
DeclineDumbbellBenchPress = 5,
DumbbellBenchPress = 6,
DumbbellFloorPress = 7,
InclineBarbellBenchPress = 8,
InclineDumbbellBenchPress = 9,
InclineSmithMachineBenchPress = 10,
IsometricBarbellBenchPress = 11,
KettlebellChestPress = 12,
NeutralGripDumbbellBenchPress = 13,
NeutralGripDumbbellInclineBenchPress = 14,
OneArmFloorPress = 15,
WeightedOneArmFloorPress = 16,
PartialLockout = 17,
ReverseGripBarbellBenchPress = 18,
ReverseGripInclineBenchPress = 19,
SingleArmCableChestPress = 20,
SingleArmDumbbellBenchPress = 21,
SmithMachineBenchPress = 22,
SwissBallDumbbellChestPress = 23,
TripleStopBarbellBenchPress = 24,
WideGripBarbellBenchPress = 25,
AlternatingDumbbellChestPress = 26,
}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.
AlternatingDumbbellChestPressOnSwissBall = 0
BarbellBenchPress = 1
BarbellBoardBenchPress = 2
BarbellFloorPress = 3
CloseGripBarbellBenchPress = 4
DeclineDumbbellBenchPress = 5
DumbbellBenchPress = 6
DumbbellFloorPress = 7
InclineBarbellBenchPress = 8
InclineDumbbellBenchPress = 9
InclineSmithMachineBenchPress = 10
IsometricBarbellBenchPress = 11
KettlebellChestPress = 12
NeutralGripDumbbellBenchPress = 13
NeutralGripDumbbellInclineBenchPress = 14
OneArmFloorPress = 15
WeightedOneArmFloorPress = 16
PartialLockout = 17
ReverseGripBarbellBenchPress = 18
ReverseGripInclineBenchPress = 19
SingleArmCableChestPress = 20
SingleArmDumbbellBenchPress = 21
SmithMachineBenchPress = 22
SwissBallDumbbellChestPress = 23
TripleStopBarbellBenchPress = 24
WideGripBarbellBenchPress = 25
AlternatingDumbbellChestPress = 26
Implementations§
Trait Implementations§
Source§impl Clone for BenchPressExerciseName
impl Clone for BenchPressExerciseName
Source§fn clone(&self) -> BenchPressExerciseName
fn clone(&self) -> BenchPressExerciseName
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 BenchPressExerciseName
impl Debug for BenchPressExerciseName
Source§impl Hash for BenchPressExerciseName
impl Hash for BenchPressExerciseName
Source§impl PartialEq for BenchPressExerciseName
impl PartialEq for BenchPressExerciseName
Source§fn eq(&self, other: &BenchPressExerciseName) -> bool
fn eq(&self, other: &BenchPressExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BenchPressExerciseName
impl Eq for BenchPressExerciseName
impl StructuralPartialEq for BenchPressExerciseName
Auto Trait Implementations§
impl Freeze for BenchPressExerciseName
impl RefUnwindSafe for BenchPressExerciseName
impl Send for BenchPressExerciseName
impl Sync for BenchPressExerciseName
impl Unpin for BenchPressExerciseName
impl UnsafeUnpin for BenchPressExerciseName
impl UnwindSafe for BenchPressExerciseName
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