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