Enum Label
#[non_exhaustive]pub enum Label {
Show 18 variants
AccelerationX,
AccelerationY,
AccelerationZ,
Altitude,
AngularVelocityX,
AngularVelocityY,
AngularVelocityZ,
GroundSpeed,
Latitude,
Longitude,
Opaque,
RelativeHumidity,
Heading,
Temperature,
VerticalSpeed,
X,
Y,
Z,
}Available on crate feature
sensors only.Expand description
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.
AccelerationX
Acceleration along the X axis.
AccelerationY
Acceleration along the Y axis.
AccelerationZ
Acceleration along the Z axis.
Altitude
Altitude.
AngularVelocityX
Angular velocity about the X axis.
AngularVelocityY
Angular velocity about the Y axis.
AngularVelocityZ
Angular velocity about the Z axis.
GroundSpeed
Ground speed.
Latitude
Latitude.
Longitude
Longitude.
Opaque
Opaque channel: the associated sample is intended for the sensor driver only, and no guarantees are provided.
RelativeHumidity
Relative humidity.
Heading
Heading.
Temperature
Temperature.
VerticalSpeed
Vertical speed.
X
X axis.
Y
Y axis.
Z
Z axis.
Trait Implementations§
impl Copy for Label
impl Eq for Label
impl StructuralPartialEq for Label
Auto Trait Implementations§
impl Freeze for Label
impl RefUnwindSafe for Label
impl Send for Label
impl Sync for Label
impl Unpin for Label
impl UnwindSafe for Label
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