#[non_exhaustive]#[repr(u16)]pub enum FlyeExerciseName {
Show 13 variants
CableCrossover = 0,
DeclineDumbbellFlye = 1,
DumbbellFlye = 2,
InclineDumbbellFlye = 3,
KettlebellFlye = 4,
KneelingRearFlye = 5,
SingleArmStandingCableReverseFlye = 6,
SwissBallDumbbellFlye = 7,
ArmRotations = 8,
HugATree = 9,
FaceDownInclineReverseFlye = 10,
InclineReverseFlye = 11,
RearDeltFlyWheelchair = 12,
}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.
CableCrossover = 0
DeclineDumbbellFlye = 1
DumbbellFlye = 2
InclineDumbbellFlye = 3
KettlebellFlye = 4
KneelingRearFlye = 5
SingleArmStandingCableReverseFlye = 6
SwissBallDumbbellFlye = 7
ArmRotations = 8
HugATree = 9
FaceDownInclineReverseFlye = 10
InclineReverseFlye = 11
RearDeltFlyWheelchair = 12
Implementations§
Trait Implementations§
Source§impl Clone for FlyeExerciseName
impl Clone for FlyeExerciseName
Source§fn clone(&self) -> FlyeExerciseName
fn clone(&self) -> FlyeExerciseName
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 FlyeExerciseName
impl Debug for FlyeExerciseName
Source§impl Hash for FlyeExerciseName
impl Hash for FlyeExerciseName
Source§impl PartialEq for FlyeExerciseName
impl PartialEq for FlyeExerciseName
Source§fn eq(&self, other: &FlyeExerciseName) -> bool
fn eq(&self, other: &FlyeExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FlyeExerciseName
impl Eq for FlyeExerciseName
impl StructuralPartialEq for FlyeExerciseName
Auto Trait Implementations§
impl Freeze for FlyeExerciseName
impl RefUnwindSafe for FlyeExerciseName
impl Send for FlyeExerciseName
impl Sync for FlyeExerciseName
impl Unpin for FlyeExerciseName
impl UnsafeUnpin for FlyeExerciseName
impl UnwindSafe for FlyeExerciseName
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