#[non_exhaustive]#[repr(u16)]pub enum SandbagExerciseName {
Show 20 variants
AroundTheWorld = 0,
BackSquat = 1,
BearCrawlPullThrough = 2,
BearHugSquat = 3,
Clean = 4,
CleanAndPress = 5,
Curl = 6,
FrontCarry = 7,
FrontSquat = 8,
Lunge = 9,
OverheadPress = 10,
PlankPullThrough = 11,
RotationalLunge = 12,
Row = 13,
RussianTwist = 14,
Shouldering = 15,
Shoveling = 16,
SideLunge = 17,
Sprint = 18,
ZercherSquat = 19,
}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.
AroundTheWorld = 0
BackSquat = 1
BearCrawlPullThrough = 2
BearHugSquat = 3
Clean = 4
CleanAndPress = 5
Curl = 6
FrontCarry = 7
FrontSquat = 8
Lunge = 9
OverheadPress = 10
PlankPullThrough = 11
RotationalLunge = 12
Row = 13
RussianTwist = 14
Shouldering = 15
Shoveling = 16
SideLunge = 17
Sprint = 18
ZercherSquat = 19
Implementations§
Trait Implementations§
Source§impl Clone for SandbagExerciseName
impl Clone for SandbagExerciseName
Source§fn clone(&self) -> SandbagExerciseName
fn clone(&self) -> SandbagExerciseName
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 SandbagExerciseName
impl Debug for SandbagExerciseName
Source§impl Hash for SandbagExerciseName
impl Hash for SandbagExerciseName
Source§impl PartialEq for SandbagExerciseName
impl PartialEq for SandbagExerciseName
Source§fn eq(&self, other: &SandbagExerciseName) -> bool
fn eq(&self, other: &SandbagExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SandbagExerciseName
impl Eq for SandbagExerciseName
impl StructuralPartialEq for SandbagExerciseName
Auto Trait Implementations§
impl Freeze for SandbagExerciseName
impl RefUnwindSafe for SandbagExerciseName
impl Send for SandbagExerciseName
impl Sync for SandbagExerciseName
impl Unpin for SandbagExerciseName
impl UnsafeUnpin for SandbagExerciseName
impl UnwindSafe for SandbagExerciseName
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