Struct svm40::Signals[][src]

pub struct Signals {
    pub voc_index: i16,
    pub relative_humidity: i16,
    pub temperature: i16,
}

Standard signal measurement

Fields

voc_index: i16

VOC algorithm output with a scaling value of 10.

relative_humidity: i16

Compensated ambient humidity in %RH with a scaling factor of 100.

temperature: i16

Compensated ambient temperature in degree celsius with a scaling factor of 200.

Trait Implementations

impl Clone for Signals[src]

impl Copy for Signals[src]

impl Debug for Signals[src]

impl PartialEq<Signals> for Signals[src]

impl StructuralPartialEq for Signals[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.