pub enum OutputKind {
Show 13 variants
Iaq = 1,
StaticIaq = 2,
Co2Equivalent = 4,
BreathVocEquivalent = 8,
RawTemperature = 16,
RawPressure = 32,
RawHumidity = 64,
RawGas = 128,
StabilizationStatus = 256,
RunInStatus = 512,
SensorHeatCompensatedTemperature = 1_024,
SensorHeatCompensatedHumidity = 2_048,
GasPercentage = 8_192,
}Expand description
Bosch BSEC virtual sensor output.
See Bosch BSEC documentation.
Variants§
Iaq = 1
StaticIaq = 2
Co2Equivalent = 4
BreathVocEquivalent = 8
RawTemperature = 16
RawPressure = 32
RawHumidity = 64
RawGas = 128
StabilizationStatus = 256
RunInStatus = 512
SensorHeatCompensatedTemperature = 1_024
SensorHeatCompensatedHumidity = 2_048
GasPercentage = 8_192
Trait Implementations§
Source§impl Clone for OutputKind
impl Clone for OutputKind
Source§fn clone(&self) -> OutputKind
fn clone(&self) -> OutputKind
Returns a duplicate 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 moreSource§impl Debug for OutputKind
impl Debug for OutputKind
Source§impl Hash for OutputKind
impl Hash for OutputKind
Source§impl PartialEq for OutputKind
impl PartialEq for OutputKind
Source§impl TryFrom<u8> for OutputKind
impl TryFrom<u8> for OutputKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for OutputKind
impl Eq for OutputKind
impl StructuralPartialEq for OutputKind
Auto Trait Implementations§
impl Freeze for OutputKind
impl RefUnwindSafe for OutputKind
impl Send for OutputKind
impl Sync for OutputKind
impl Unpin for OutputKind
impl UnwindSafe for OutputKind
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