#[non_exhaustive]#[repr(u8)]pub enum FitBaseType {
Show 17 variants
Enum = 0,
Sint8 = 1,
Uint8 = 2,
Sint16 = 131,
Uint16 = 132,
Sint32 = 133,
Uint32 = 134,
String = 7,
Float32 = 136,
Float64 = 137,
Uint8z = 10,
Uint16z = 139,
Uint32z = 140,
Byte = 13,
Sint64 = 142,
Uint64 = 143,
Uint64z = 144,
}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.
Enum = 0
Sint8 = 1
Uint8 = 2
Sint16 = 131
Uint16 = 132
Sint32 = 133
Uint32 = 134
String = 7
Float32 = 136
Float64 = 137
Uint8z = 10
Uint16z = 139
Uint32z = 140
Byte = 13
Sint64 = 142
Uint64 = 143
Uint64z = 144
Implementations§
Source§impl FitBaseType
impl FitBaseType
Trait Implementations§
Source§impl Clone for FitBaseType
impl Clone for FitBaseType
Source§fn clone(&self) -> FitBaseType
fn clone(&self) -> FitBaseType
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 FitBaseType
impl Debug for FitBaseType
Source§impl Hash for FitBaseType
impl Hash for FitBaseType
Source§impl PartialEq for FitBaseType
impl PartialEq for FitBaseType
Source§fn eq(&self, other: &FitBaseType) -> bool
fn eq(&self, other: &FitBaseType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FitBaseType
impl Eq for FitBaseType
impl StructuralPartialEq for FitBaseType
Auto Trait Implementations§
impl Freeze for FitBaseType
impl RefUnwindSafe for FitBaseType
impl Send for FitBaseType
impl Sync for FitBaseType
impl Unpin for FitBaseType
impl UnsafeUnpin for FitBaseType
impl UnwindSafe for FitBaseType
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