pub struct DhtSensorsSerde {
    pub ts: DateTime<Utc>,
    pub o: Vec<String>,
    pub t: Vec<f32>,
    pub h: Vec<f32>,
    pub hi: Vec<f32>,
}
Expand description

A more compactly serialized verson of DhtSensors for serializing via JSON

This is not intended on being human-readable. For human-readability, use DhtSensors instead.

Fields

ts: DateTime<Utc>o: Vec<String>t: Vec<f32>h: Vec<f32>hi: Vec<f32>

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Converts to this type from the input type.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.