#[non_exhaustive]#[repr(u8)]pub enum ExdQualifiers {
Show 44 variants
NoQualifier = 0,
Instantaneous = 1,
Average = 2,
Lap = 3,
Maximum = 4,
MaximumAverage = 5,
MaximumLap = 6,
LastLap = 7,
AverageLap = 8,
ToDestination = 9,
ToGo = 10,
ToNext = 11,
NextCoursePoint = 12,
Total = 13,
ThreeSecondAverage = 14,
TenSecondAverage = 15,
ThirtySecondAverage = 16,
PercentMaximum = 17,
PercentMaximumAverage = 18,
LapPercentMaximum = 19,
Elapsed = 20,
Sunrise = 21,
Sunset = 22,
ComparedToVirtualPartner = 23,
Maximum24h = 24,
Minimum24h = 25,
Minimum = 26,
First = 27,
Second = 28,
Third = 29,
Shifter = 30,
LastSport = 31,
Moving = 32,
Stopped = 33,
EstimatedTotal = 34,
Zone9 = 242,
Zone8 = 243,
Zone7 = 244,
Zone6 = 245,
Zone5 = 246,
Zone4 = 247,
Zone3 = 248,
Zone2 = 249,
Zone1 = 250,
}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.
NoQualifier = 0
Instantaneous = 1
Average = 2
Lap = 3
Maximum = 4
MaximumAverage = 5
MaximumLap = 6
LastLap = 7
AverageLap = 8
ToDestination = 9
ToGo = 10
ToNext = 11
NextCoursePoint = 12
Total = 13
ThreeSecondAverage = 14
TenSecondAverage = 15
ThirtySecondAverage = 16
PercentMaximum = 17
PercentMaximumAverage = 18
LapPercentMaximum = 19
Elapsed = 20
Sunrise = 21
Sunset = 22
ComparedToVirtualPartner = 23
Maximum24h = 24
Minimum24h = 25
Minimum = 26
First = 27
Second = 28
Third = 29
Shifter = 30
LastSport = 31
Moving = 32
Stopped = 33
EstimatedTotal = 34
Zone9 = 242
Zone8 = 243
Zone7 = 244
Zone6 = 245
Zone5 = 246
Zone4 = 247
Zone3 = 248
Zone2 = 249
Zone1 = 250
Implementations§
Source§impl ExdQualifiers
impl ExdQualifiers
Trait Implementations§
Source§impl Clone for ExdQualifiers
impl Clone for ExdQualifiers
Source§fn clone(&self) -> ExdQualifiers
fn clone(&self) -> ExdQualifiers
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 ExdQualifiers
impl Debug for ExdQualifiers
Source§impl Hash for ExdQualifiers
impl Hash for ExdQualifiers
Source§impl PartialEq for ExdQualifiers
impl PartialEq for ExdQualifiers
Source§fn eq(&self, other: &ExdQualifiers) -> bool
fn eq(&self, other: &ExdQualifiers) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ExdQualifiers
impl Eq for ExdQualifiers
impl StructuralPartialEq for ExdQualifiers
Auto Trait Implementations§
impl Freeze for ExdQualifiers
impl RefUnwindSafe for ExdQualifiers
impl Send for ExdQualifiers
impl Sync for ExdQualifiers
impl Unpin for ExdQualifiers
impl UnsafeUnpin for ExdQualifiers
impl UnwindSafe for ExdQualifiers
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