#[non_exhaustive]#[repr(u8)]pub enum File {
Show 20 variants
Device = 1,
Settings = 2,
Sport = 3,
Activity = 4,
Workout = 5,
Course = 6,
Schedules = 7,
Weight = 9,
Totals = 10,
Goals = 11,
BloodPressure = 14,
MonitoringA = 15,
ActivitySummary = 20,
MonitoringDaily = 28,
MonitoringB = 32,
Segment = 34,
SegmentList = 35,
ExdConfiguration = 40,
MfgRangeMin = 247,
MfgRangeMax = 254,
}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.
Device = 1
Settings = 2
Sport = 3
Activity = 4
Workout = 5
Course = 6
Schedules = 7
Weight = 9
Totals = 10
Goals = 11
BloodPressure = 14
MonitoringA = 15
ActivitySummary = 20
MonitoringDaily = 28
MonitoringB = 32
Segment = 34
SegmentList = 35
ExdConfiguration = 40
MfgRangeMin = 247
MfgRangeMax = 254
Implementations§
Trait Implementations§
impl Copy for File
impl Eq for File
impl StructuralPartialEq for File
Auto Trait Implementations§
impl Freeze for File
impl RefUnwindSafe for File
impl Send for File
impl Sync for File
impl Unpin for File
impl UnsafeUnpin for File
impl UnwindSafe for File
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