#[non_exhaustive]#[repr(u16)]pub enum ChopExerciseName {
Show 23 variants
CablePullThrough = 0,
CableRotationalLift = 1,
CableWoodchop = 2,
CrossChopToKnee = 3,
WeightedCrossChopToKnee = 4,
DumbbellChop = 5,
HalfKneelingRotation = 6,
WeightedHalfKneelingRotation = 7,
HalfKneelingRotationalChop = 8,
HalfKneelingRotationalReverseChop = 9,
HalfKneelingStabilityChop = 10,
HalfKneelingStabilityReverseChop = 11,
KneelingRotationalChop = 12,
KneelingRotationalReverseChop = 13,
KneelingStabilityChop = 14,
KneelingWoodchopper = 15,
MedicineBallWoodChops = 16,
PowerSquatChops = 17,
WeightedPowerSquatChops = 18,
StandingRotationalChop = 19,
StandingSplitRotationalChop = 20,
StandingSplitRotationalReverseChop = 21,
StandingStabilityReverseChop = 22,
}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.
CablePullThrough = 0
CableRotationalLift = 1
CableWoodchop = 2
CrossChopToKnee = 3
WeightedCrossChopToKnee = 4
DumbbellChop = 5
HalfKneelingRotation = 6
WeightedHalfKneelingRotation = 7
HalfKneelingRotationalChop = 8
HalfKneelingRotationalReverseChop = 9
HalfKneelingStabilityChop = 10
HalfKneelingStabilityReverseChop = 11
KneelingRotationalChop = 12
KneelingRotationalReverseChop = 13
KneelingStabilityChop = 14
KneelingWoodchopper = 15
MedicineBallWoodChops = 16
PowerSquatChops = 17
WeightedPowerSquatChops = 18
StandingRotationalChop = 19
StandingSplitRotationalChop = 20
StandingSplitRotationalReverseChop = 21
StandingStabilityReverseChop = 22
Implementations§
Trait Implementations§
Source§impl Clone for ChopExerciseName
impl Clone for ChopExerciseName
Source§fn clone(&self) -> ChopExerciseName
fn clone(&self) -> ChopExerciseName
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 ChopExerciseName
impl Debug for ChopExerciseName
Source§impl Hash for ChopExerciseName
impl Hash for ChopExerciseName
Source§impl PartialEq for ChopExerciseName
impl PartialEq for ChopExerciseName
Source§fn eq(&self, other: &ChopExerciseName) -> bool
fn eq(&self, other: &ChopExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ChopExerciseName
impl Eq for ChopExerciseName
impl StructuralPartialEq for ChopExerciseName
Auto Trait Implementations§
impl Freeze for ChopExerciseName
impl RefUnwindSafe for ChopExerciseName
impl Send for ChopExerciseName
impl Sync for ChopExerciseName
impl Unpin for ChopExerciseName
impl UnsafeUnpin for ChopExerciseName
impl UnwindSafe for ChopExerciseName
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