pub struct NewestEvents {
pub temperature: Option<SensorValue>,
pub humidity: Option<SensorValue>,
pub illumination: Option<SensorValue>,
pub motion: Option<SensorValue>,
}Fields§
§temperature: Option<SensorValue>§humidity: Option<SensorValue>§illumination: Option<SensorValue>§motion: Option<SensorValue>Trait Implementations§
Source§impl Clone for NewestEvents
impl Clone for NewestEvents
Source§fn clone(&self) -> NewestEvents
fn clone(&self) -> NewestEvents
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 NewestEvents
impl Debug for NewestEvents
Source§impl Default for NewestEvents
impl Default for NewestEvents
Source§fn default() -> NewestEvents
fn default() -> NewestEvents
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NewestEvents
impl RefUnwindSafe for NewestEvents
impl Send for NewestEvents
impl Sync for NewestEvents
impl Unpin for NewestEvents
impl UnwindSafe for NewestEvents
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