Struct DataEntryValue
pub struct DataEntryValue {
pub timestamp: DateTime<Utc>,
pub value: Value,
}Expand description
Represents the value of a data entry node.
Fields§
§timestamp: DateTime<Utc>Capture time of the value in ISO 8601 format.
For constant values, this will always be the current time when read.
value: ValueThe actual value.
Trait Implementations§
§impl Debug for DataEntryValue
impl Debug for DataEntryValue
§impl<'de> Deserialize<'de> for DataEntryValue
impl<'de> Deserialize<'de> for DataEntryValue
§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
§impl Serialize for DataEntryValue
impl Serialize for DataEntryValue
Auto Trait Implementations§
impl Freeze for DataEntryValue
impl RefUnwindSafe for DataEntryValue
impl Send for DataEntryValue
impl Sync for DataEntryValue
impl Unpin for DataEntryValue
impl UnwindSafe for DataEntryValue
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