#[non_exhaustive]#[repr(u16)]pub enum LegCurlExerciseName {
Show 14 variants
LegCurl = 0,
WeightedLegCurl = 1,
GoodMorning = 2,
SeatedBarbellGoodMorning = 3,
SingleLegBarbellGoodMorning = 4,
SingleLegSlidingLegCurl = 5,
SlidingLegCurl = 6,
SplitBarbellGoodMorning = 7,
SplitStanceExtension = 8,
StaggeredStanceGoodMorning = 9,
SwissBallHipRaiseAndLegCurl = 10,
ZercherGoodMorning = 11,
BandGoodMorning = 12,
BarGoodMorning = 13,
}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.
LegCurl = 0
WeightedLegCurl = 1
GoodMorning = 2
SeatedBarbellGoodMorning = 3
SingleLegBarbellGoodMorning = 4
SingleLegSlidingLegCurl = 5
SlidingLegCurl = 6
SplitBarbellGoodMorning = 7
SplitStanceExtension = 8
StaggeredStanceGoodMorning = 9
SwissBallHipRaiseAndLegCurl = 10
ZercherGoodMorning = 11
BandGoodMorning = 12
BarGoodMorning = 13
Implementations§
Trait Implementations§
Source§impl Clone for LegCurlExerciseName
impl Clone for LegCurlExerciseName
Source§fn clone(&self) -> LegCurlExerciseName
fn clone(&self) -> LegCurlExerciseName
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 LegCurlExerciseName
impl Debug for LegCurlExerciseName
Source§impl Hash for LegCurlExerciseName
impl Hash for LegCurlExerciseName
Source§impl PartialEq for LegCurlExerciseName
impl PartialEq for LegCurlExerciseName
Source§fn eq(&self, other: &LegCurlExerciseName) -> bool
fn eq(&self, other: &LegCurlExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LegCurlExerciseName
impl Eq for LegCurlExerciseName
impl StructuralPartialEq for LegCurlExerciseName
Auto Trait Implementations§
impl Freeze for LegCurlExerciseName
impl RefUnwindSafe for LegCurlExerciseName
impl Send for LegCurlExerciseName
impl Sync for LegCurlExerciseName
impl Unpin for LegCurlExerciseName
impl UnsafeUnpin for LegCurlExerciseName
impl UnwindSafe for LegCurlExerciseName
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