pub enum InputKind {
Pressure,
Humidity,
Temperature,
GasResistor,
HeatSource,
DisableBaselineTracker,
Other(u32),
}Expand description
Identifies a physical BME sensor.
Variants§
Pressure
Pressure sensor.
Humidity
Humidity sensor.
Temperature
Temperature sensor.
GasResistor
Gas resistance sensor.
HeatSource
Compensation for nearby heat sources.
DisableBaselineTracker
Pseudo-sensor to disable the baseline tracker.
Other(u32)
Other sensor only known by magic number.
Trait Implementations§
impl Copy for InputKind
impl Eq for InputKind
impl StructuralPartialEq for InputKind
Auto Trait Implementations§
impl Freeze for InputKind
impl RefUnwindSafe for InputKind
impl Send for InputKind
impl Sync for InputKind
impl Unpin for InputKind
impl UnwindSafe for InputKind
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