#[non_exhaustive]#[repr(u16)]pub enum ShrugExerciseName {
Show 25 variants
BarbellJumpShrug = 0,
BarbellShrug = 1,
BarbellUprightRow = 2,
BehindTheBackSmithMachineShrug = 3,
DumbbellJumpShrug = 4,
DumbbellShrug = 5,
DumbbellUprightRow = 6,
InclineDumbbellShrug = 7,
OverheadBarbellShrug = 8,
OverheadDumbbellShrug = 9,
ScaptionAndShrug = 10,
ScapularRetraction = 11,
SerratusChairShrug = 12,
WeightedSerratusChairShrug = 13,
SerratusShrug = 14,
WeightedSerratusShrug = 15,
WideGripJumpShrug = 16,
WideGripBarbellShrug = 17,
BehindTheBackShrug = 18,
DumbbellShrugWheelchair = 19,
ShrugWheelchair = 20,
ShrugArmDownWheelchair = 21,
ShrugArmMidWheelchair = 22,
ShrugArmUpWheelchair = 23,
UprightRow = 24,
}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.
BarbellJumpShrug = 0
BarbellShrug = 1
BarbellUprightRow = 2
BehindTheBackSmithMachineShrug = 3
DumbbellJumpShrug = 4
DumbbellShrug = 5
DumbbellUprightRow = 6
InclineDumbbellShrug = 7
OverheadBarbellShrug = 8
OverheadDumbbellShrug = 9
ScaptionAndShrug = 10
ScapularRetraction = 11
SerratusChairShrug = 12
WeightedSerratusChairShrug = 13
SerratusShrug = 14
WeightedSerratusShrug = 15
WideGripJumpShrug = 16
WideGripBarbellShrug = 17
BehindTheBackShrug = 18
DumbbellShrugWheelchair = 19
ShrugWheelchair = 20
ShrugArmDownWheelchair = 21
ShrugArmMidWheelchair = 22
ShrugArmUpWheelchair = 23
UprightRow = 24
Implementations§
Trait Implementations§
Source§impl Clone for ShrugExerciseName
impl Clone for ShrugExerciseName
Source§fn clone(&self) -> ShrugExerciseName
fn clone(&self) -> ShrugExerciseName
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 ShrugExerciseName
impl Debug for ShrugExerciseName
Source§impl Hash for ShrugExerciseName
impl Hash for ShrugExerciseName
Source§impl PartialEq for ShrugExerciseName
impl PartialEq for ShrugExerciseName
Source§fn eq(&self, other: &ShrugExerciseName) -> bool
fn eq(&self, other: &ShrugExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ShrugExerciseName
impl Eq for ShrugExerciseName
impl StructuralPartialEq for ShrugExerciseName
Auto Trait Implementations§
impl Freeze for ShrugExerciseName
impl RefUnwindSafe for ShrugExerciseName
impl Send for ShrugExerciseName
impl Sync for ShrugExerciseName
impl Unpin for ShrugExerciseName
impl UnsafeUnpin for ShrugExerciseName
impl UnwindSafe for ShrugExerciseName
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