#[non_exhaustive]#[repr(u8)]pub enum AntplusDeviceType {
Show 25 variants
Antfs = 1,
BikePower = 11,
EnvironmentSensorLegacy = 12,
MultiSportSpeedDistance = 15,
Control = 16,
FitnessEquipment = 17,
BloodPressure = 18,
GeocacheNode = 19,
LightElectricVehicle = 20,
EnvSensor = 25,
Racquet = 26,
ControlHub = 27,
MuscleOxygen = 31,
Shifting = 34,
BikeLightMain = 35,
BikeLightShared = 36,
Exd = 38,
BikeRadar = 40,
BikeAero = 46,
WeightScale = 119,
HeartRate = 120,
BikeSpeedCadence = 121,
BikeCadence = 122,
BikeSpeed = 123,
StrideSpeedDistance = 124,
}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.
Antfs = 1
BikePower = 11
EnvironmentSensorLegacy = 12
MultiSportSpeedDistance = 15
Control = 16
FitnessEquipment = 17
BloodPressure = 18
GeocacheNode = 19
LightElectricVehicle = 20
EnvSensor = 25
Racquet = 26
ControlHub = 27
MuscleOxygen = 31
Shifting = 34
BikeLightMain = 35
Exd = 38
BikeRadar = 40
BikeAero = 46
WeightScale = 119
HeartRate = 120
BikeSpeedCadence = 121
BikeCadence = 122
BikeSpeed = 123
StrideSpeedDistance = 124
Implementations§
Trait Implementations§
Source§impl Clone for AntplusDeviceType
impl Clone for AntplusDeviceType
Source§fn clone(&self) -> AntplusDeviceType
fn clone(&self) -> AntplusDeviceType
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 AntplusDeviceType
impl Debug for AntplusDeviceType
Source§impl Hash for AntplusDeviceType
impl Hash for AntplusDeviceType
Source§impl PartialEq for AntplusDeviceType
impl PartialEq for AntplusDeviceType
Source§fn eq(&self, other: &AntplusDeviceType) -> bool
fn eq(&self, other: &AntplusDeviceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AntplusDeviceType
impl Eq for AntplusDeviceType
impl StructuralPartialEq for AntplusDeviceType
Auto Trait Implementations§
impl Freeze for AntplusDeviceType
impl RefUnwindSafe for AntplusDeviceType
impl Send for AntplusDeviceType
impl Sync for AntplusDeviceType
impl Unpin for AntplusDeviceType
impl UnsafeUnpin for AntplusDeviceType
impl UnwindSafe for AntplusDeviceType
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