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