Enum SensorType
pub enum SensorType {
Show 34 variants
AccelerometerUncalibrated,
GyroscopeUncalibrated,
MagneticFieldUncalibrated,
Accelerometer,
Gyroscope,
MagneticField,
Orientation,
Gravity,
LinearAcceleration,
RotationVector,
GameRotationVector,
SignificantMotion,
StepDetector,
StepCounter,
GeomagneticRotationVector,
TiltDetector,
WakeGesture,
GlanceGesture,
PickUpGesture,
WristTiltGesture,
DeviceOrientation,
Pose6Dof,
StationaryDetect,
MotionDetect,
LowLatencyOffbodyDetect,
Light,
Pressure,
Proximity,
RelativeHumidity,
AmbientTemperature,
HeartRate,
HeartBeat,
Power,
DevicePrivateBase,
// some variants omitted
}
Expand description
Labels for different types of sensors.
These values are derived from: https://android.googlesource.com/platform/hardware/interfaces/+/main/sensors/1.0/types.hal#118
Variants§
AccelerometerUncalibrated
Raw inertial measurement.
GyroscopeUncalibrated
MagneticFieldUncalibrated
Accelerometer
Calibrated inertial measurement.
Gyroscope
MagneticField
Orientation
Derived/fused from inertial measurement.
Gravity
LinearAcceleration
RotationVector
GameRotationVector
SignificantMotion
StepDetector
StepCounter
GeomagneticRotationVector
TiltDetector
WakeGesture
GlanceGesture
PickUpGesture
WristTiltGesture
DeviceOrientation
Pose6Dof
StationaryDetect
MotionDetect
LowLatencyOffbodyDetect
Light
Environmental.
Pressure
Proximity
RelativeHumidity
AmbientTemperature
HeartRate
Biometric.
HeartBeat
Power
Power and electrical.
DevicePrivateBase
Base for device manufacturers’ private sensor types.
Implementations§
§impl SensorType
impl SensorType
pub fn from_primitive(prim: u32) -> Option<SensorType>
pub fn from_primitive_allow_unknown(prim: u32) -> SensorType
pub fn unknown() -> SensorType
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
Trait Implementations§
§impl Clone for SensorType
impl Clone for SensorType
§fn clone(&self) -> SensorType
fn clone(&self) -> SensorType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for SensorType
impl Debug for SensorType
§impl<D> Decode<SensorType, D> for SensorTypewhere
D: ResourceDialect,
impl<D> Decode<SensorType, D> for SensorTypewhere
D: ResourceDialect,
§fn new_empty() -> SensorType
fn new_empty() -> SensorType
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<SensorType, D> for SensorTypewhere
D: ResourceDialect,
impl<D> Encode<SensorType, D> for SensorTypewhere
D: ResourceDialect,
§impl Hash for SensorType
impl Hash for SensorType
§impl Ord for SensorType
impl Ord for SensorType
§impl PartialEq for SensorType
impl PartialEq for SensorType
§impl PartialOrd for SensorType
impl PartialOrd for SensorType
§impl TypeMarker for SensorType
impl TypeMarker for SensorType
§type Owned = SensorType
type Owned = SensorType
The owned Rust type which this FIDL type decodes into.
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for SensorType
impl ValueTypeMarker for SensorType
§type Borrowed<'a> = SensorType
type Borrowed<'a> = SensorType
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<SensorType as TypeMarker>::Owned,
) -> <SensorType as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<SensorType as TypeMarker>::Owned, ) -> <SensorType as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for SensorType
impl Eq for SensorType
impl StructuralPartialEq for SensorType
Auto Trait Implementations§
impl Freeze for SensorType
impl RefUnwindSafe for SensorType
impl Send for SensorType
impl Sync for SensorType
impl Unpin for SensorType
impl UnwindSafe for SensorType
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