#[non_exhaustive]#[repr(u16)]pub enum PlyoExerciseName {
Show 38 variants
AlternatingJumpLunge = 0,
WeightedAlternatingJumpLunge = 1,
BarbellJumpSquat = 2,
BodyWeightJumpSquat = 3,
WeightedJumpSquat = 4,
CrossKneeStrike = 5,
WeightedCrossKneeStrike = 6,
DepthJump = 7,
WeightedDepthJump = 8,
DumbbellJumpSquat = 9,
DumbbellSplitJump = 10,
FrontKneeStrike = 11,
WeightedFrontKneeStrike = 12,
HighBoxJump = 13,
WeightedHighBoxJump = 14,
IsometricExplosiveBodyWeightJumpSquat = 15,
WeightedIsometricExplosiveJumpSquat = 16,
LateralLeapAndHop = 17,
WeightedLateralLeapAndHop = 18,
LateralPlyoSquats = 19,
WeightedLateralPlyoSquats = 20,
LateralSlide = 21,
WeightedLateralSlide = 22,
MedicineBallOverheadThrows = 23,
MedicineBallSideThrow = 24,
MedicineBallSlam = 25,
SideToSideMedicineBallThrows = 26,
SideToSideShuffleJump = 27,
WeightedSideToSideShuffleJump = 28,
SquatJumpOntoBox = 29,
WeightedSquatJumpOntoBox = 30,
SquatJumpsInAndOut = 31,
WeightedSquatJumpsInAndOut = 32,
BoxJump = 33,
BoxJumpOvers = 34,
BoxJumpOversOverTheBox = 35,
StarJumpSquats = 36,
JumpSquat = 37,
}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.
AlternatingJumpLunge = 0
WeightedAlternatingJumpLunge = 1
BarbellJumpSquat = 2
BodyWeightJumpSquat = 3
WeightedJumpSquat = 4
CrossKneeStrike = 5
WeightedCrossKneeStrike = 6
DepthJump = 7
WeightedDepthJump = 8
DumbbellJumpSquat = 9
DumbbellSplitJump = 10
FrontKneeStrike = 11
WeightedFrontKneeStrike = 12
HighBoxJump = 13
WeightedHighBoxJump = 14
IsometricExplosiveBodyWeightJumpSquat = 15
WeightedIsometricExplosiveJumpSquat = 16
LateralLeapAndHop = 17
WeightedLateralLeapAndHop = 18
LateralPlyoSquats = 19
WeightedLateralPlyoSquats = 20
LateralSlide = 21
WeightedLateralSlide = 22
MedicineBallOverheadThrows = 23
MedicineBallSideThrow = 24
MedicineBallSlam = 25
SideToSideMedicineBallThrows = 26
SideToSideShuffleJump = 27
WeightedSideToSideShuffleJump = 28
SquatJumpOntoBox = 29
WeightedSquatJumpOntoBox = 30
SquatJumpsInAndOut = 31
WeightedSquatJumpsInAndOut = 32
BoxJump = 33
BoxJumpOvers = 34
BoxJumpOversOverTheBox = 35
StarJumpSquats = 36
JumpSquat = 37
Implementations§
Trait Implementations§
Source§impl Clone for PlyoExerciseName
impl Clone for PlyoExerciseName
Source§fn clone(&self) -> PlyoExerciseName
fn clone(&self) -> PlyoExerciseName
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 PlyoExerciseName
impl Debug for PlyoExerciseName
Source§impl Hash for PlyoExerciseName
impl Hash for PlyoExerciseName
Source§impl PartialEq for PlyoExerciseName
impl PartialEq for PlyoExerciseName
Source§fn eq(&self, other: &PlyoExerciseName) -> bool
fn eq(&self, other: &PlyoExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PlyoExerciseName
impl Eq for PlyoExerciseName
impl StructuralPartialEq for PlyoExerciseName
Auto Trait Implementations§
impl Freeze for PlyoExerciseName
impl RefUnwindSafe for PlyoExerciseName
impl Send for PlyoExerciseName
impl Sync for PlyoExerciseName
impl Unpin for PlyoExerciseName
impl UnsafeUnpin for PlyoExerciseName
impl UnwindSafe for PlyoExerciseName
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