#[non_exhaustive]#[repr(u16)]pub enum SledExerciseName {
BackwardDrag = 0,
ChestPress = 1,
ForwardDrag = 2,
LowPush = 3,
Push = 4,
Row = 5,
}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.
Implementations§
Trait Implementations§
Source§impl Clone for SledExerciseName
impl Clone for SledExerciseName
Source§fn clone(&self) -> SledExerciseName
fn clone(&self) -> SledExerciseName
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 SledExerciseName
impl Debug for SledExerciseName
Source§impl Hash for SledExerciseName
impl Hash for SledExerciseName
Source§impl PartialEq for SledExerciseName
impl PartialEq for SledExerciseName
Source§fn eq(&self, other: &SledExerciseName) -> bool
fn eq(&self, other: &SledExerciseName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SledExerciseName
impl Eq for SledExerciseName
impl StructuralPartialEq for SledExerciseName
Auto Trait Implementations§
impl Freeze for SledExerciseName
impl RefUnwindSafe for SledExerciseName
impl Send for SledExerciseName
impl Sync for SledExerciseName
impl Unpin for SledExerciseName
impl UnsafeUnpin for SledExerciseName
impl UnwindSafe for SledExerciseName
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