#[non_exhaustive]#[repr(u16)]pub enum CarryExerciseName {
BarHolds = 0,
FarmersWalk = 1,
FarmersWalkOnToes = 2,
HexDumbbellHold = 3,
OverheadCarry = 4,
DumbbellWaiterCarry = 5,
FarmersCarryWalkLunge = 6,
FarmersCarry = 7,
FarmersCarryOnToes = 8,
}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.
BarHolds = 0
FarmersWalk = 1
FarmersWalkOnToes = 2
HexDumbbellHold = 3
OverheadCarry = 4
DumbbellWaiterCarry = 5
FarmersCarryWalkLunge = 6
FarmersCarry = 7
FarmersCarryOnToes = 8
Implementations§
Trait Implementations§
Source§impl Clone for CarryExerciseName
impl Clone for CarryExerciseName
Source§fn clone(&self) -> CarryExerciseName
fn clone(&self) -> CarryExerciseName
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 CarryExerciseName
impl Debug for CarryExerciseName
Source§impl Hash for CarryExerciseName
impl Hash for CarryExerciseName
Source§impl PartialEq for CarryExerciseName
impl PartialEq for CarryExerciseName
Source§fn eq(&self, other: &CarryExerciseName) -> bool
fn eq(&self, other: &CarryExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CarryExerciseName
impl Eq for CarryExerciseName
impl StructuralPartialEq for CarryExerciseName
Auto Trait Implementations§
impl Freeze for CarryExerciseName
impl RefUnwindSafe for CarryExerciseName
impl Send for CarryExerciseName
impl Sync for CarryExerciseName
impl Unpin for CarryExerciseName
impl UnsafeUnpin for CarryExerciseName
impl UnwindSafe for CarryExerciseName
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