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