[][src]Enum shtcx::PowerMode

pub enum PowerMode {
    NormalMode,
    LowPower,
}

Measurement power mode: Normal mode or low power mode.

The sensors provides a low power measurement mode. Using the low power mode significantly shortens the measurement duration and thus minimizes the energy consumption per measurement. The benefit of ultra-low power consumption comes at the cost of reduced repeatability of the sensor signals: while the impact on the relative humidity signal is negligible and does not affect accuracy, it has an effect on temperature accuracy.

More details can be found in the "Low Power Measurement Mode" application note by Sensirion.

Variants

NormalMode

Normal measurement.

LowPower

Low power measurement: Less energy consumption, but repeatability and accuracy of measurements are negatively impacted.

Trait Implementations

impl Clone for PowerMode[src]

impl Copy for PowerMode[src]

impl Debug for PowerMode[src]

impl Eq for PowerMode[src]

impl PartialEq<PowerMode> for PowerMode[src]

impl StructuralEq for PowerMode[src]

impl StructuralPartialEq for PowerMode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.