pub struct IOThermoHygrometerStatus {
pub temperature: f64,
pub humidity: f64,
pub battery: f64,
}
Expand description
Indoor/outdoor thermo-hygrometer status.
Fields§
§temperature: f64
Temperature (C).
humidity: f64
Humidity (%).
battery: f64
Battery level (%).
Trait Implementations§
Source§impl Clone for IOThermoHygrometerStatus
impl Clone for IOThermoHygrometerStatus
Source§fn clone(&self) -> IOThermoHygrometerStatus
fn clone(&self) -> IOThermoHygrometerStatus
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 IOThermoHygrometerStatus
impl Debug for IOThermoHygrometerStatus
Source§impl<'de> Deserialize<'de> for IOThermoHygrometerStatus
impl<'de> Deserialize<'de> for IOThermoHygrometerStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for IOThermoHygrometerStatus
impl PartialEq for IOThermoHygrometerStatus
impl StructuralPartialEq for IOThermoHygrometerStatus
Auto Trait Implementations§
impl Freeze for IOThermoHygrometerStatus
impl RefUnwindSafe for IOThermoHygrometerStatus
impl Send for IOThermoHygrometerStatus
impl Sync for IOThermoHygrometerStatus
impl Unpin for IOThermoHygrometerStatus
impl UnwindSafe for IOThermoHygrometerStatus
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