[][src]Struct dht_logger::messages::SensorData

pub struct SensorData {
    pub temperature: f32,
    pub humidity: f32,
    pub heat_index: f32,
}

A single reading for a DHT sensor.

Fields

temperature: f32humidity: f32heat_index: f32

Trait Implementations

impl Clone for SensorData[src]

impl Copy for SensorData[src]

impl Debug for SensorData[src]

impl<'de> Deserialize<'de> for SensorData[src]

impl From<DhtDataRaw> for SensorData[src]

Convert the RAW Json to SensorData so it can be re-serialized with full field names.

impl PartialEq<SensorData> for SensorData[src]

impl Serialize for SensorData[src]

impl StructuralPartialEq for SensorData[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.