pub struct DeviceStateEntry {
pub edge_id: String,
pub device_type: String,
pub device_id: String,
pub property: String,
pub value: Value,
pub updated_at: String,
}Fields§
§edge_id: String§device_type: String§device_id: String§property: String§value: Value§updated_at: StringTrait Implementations§
Source§impl Clone for DeviceStateEntry
impl Clone for DeviceStateEntry
Source§fn clone(&self) -> DeviceStateEntry
fn clone(&self) -> DeviceStateEntry
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 DeviceStateEntry
impl Debug for DeviceStateEntry
Source§impl<'de> Deserialize<'de> for DeviceStateEntry
impl<'de> Deserialize<'de> for DeviceStateEntry
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
Auto Trait Implementations§
impl Freeze for DeviceStateEntry
impl RefUnwindSafe for DeviceStateEntry
impl Send for DeviceStateEntry
impl Sync for DeviceStateEntry
impl Unpin for DeviceStateEntry
impl UnsafeUnpin for DeviceStateEntry
impl UnwindSafe for DeviceStateEntry
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