#[non_exhaustive]#[repr(u16)]pub enum TotalBodyExerciseName {
Show 20 variants
Burpee = 0,
WeightedBurpee = 1,
BurpeeBoxJump = 2,
WeightedBurpeeBoxJump = 3,
HighPullBurpee = 4,
ManMakers = 5,
OneArmBurpee = 6,
SquatThrusts = 7,
WeightedSquatThrusts = 8,
SquatPlankPushUp = 9,
WeightedSquatPlankPushUp = 10,
StandingTRotationBalance = 11,
WeightedStandingTRotationBalance = 12,
BarbellBurpee = 13,
BurpeeBoxJumpOverYesLiterallyJumpingOverTheBox = 15,
BurpeeBoxJumpStepUpOver = 16,
LateralBarbellBurpee = 17,
TotalBodyBurpeeOverBar = 18,
BurpeeBoxJumpOver = 19,
BurpeeWheelchair = 20,
}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.
Burpee = 0
WeightedBurpee = 1
BurpeeBoxJump = 2
WeightedBurpeeBoxJump = 3
HighPullBurpee = 4
ManMakers = 5
OneArmBurpee = 6
SquatThrusts = 7
WeightedSquatThrusts = 8
SquatPlankPushUp = 9
WeightedSquatPlankPushUp = 10
StandingTRotationBalance = 11
WeightedStandingTRotationBalance = 12
BarbellBurpee = 13
BurpeeBoxJumpOverYesLiterallyJumpingOverTheBox = 15
BurpeeBoxJumpStepUpOver = 16
LateralBarbellBurpee = 17
TotalBodyBurpeeOverBar = 18
BurpeeBoxJumpOver = 19
BurpeeWheelchair = 20
Implementations§
Trait Implementations§
Source§impl Clone for TotalBodyExerciseName
impl Clone for TotalBodyExerciseName
Source§fn clone(&self) -> TotalBodyExerciseName
fn clone(&self) -> TotalBodyExerciseName
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 TotalBodyExerciseName
impl Debug for TotalBodyExerciseName
Source§impl Hash for TotalBodyExerciseName
impl Hash for TotalBodyExerciseName
Source§impl PartialEq for TotalBodyExerciseName
impl PartialEq for TotalBodyExerciseName
Source§fn eq(&self, other: &TotalBodyExerciseName) -> bool
fn eq(&self, other: &TotalBodyExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TotalBodyExerciseName
impl Eq for TotalBodyExerciseName
impl StructuralPartialEq for TotalBodyExerciseName
Auto Trait Implementations§
impl Freeze for TotalBodyExerciseName
impl RefUnwindSafe for TotalBodyExerciseName
impl Send for TotalBodyExerciseName
impl Sync for TotalBodyExerciseName
impl Unpin for TotalBodyExerciseName
impl UnsafeUnpin for TotalBodyExerciseName
impl UnwindSafe for TotalBodyExerciseName
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