pub struct DataUpdatedData {
pub data_type: String,
pub operation: String,
pub data: Option<Value>,
pub timestamp: String,
}Expand description
数据更新数据
Fields§
§data_type: String§operation: String§data: Option<Value>§timestamp: StringTrait Implementations§
Source§impl Clone for DataUpdatedData
impl Clone for DataUpdatedData
Source§fn clone(&self) -> DataUpdatedData
fn clone(&self) -> DataUpdatedData
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 DataUpdatedData
impl Debug for DataUpdatedData
Source§impl<'de> Deserialize<'de> for DataUpdatedData
impl<'de> Deserialize<'de> for DataUpdatedData
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 DataUpdatedData
impl RefUnwindSafe for DataUpdatedData
impl Send for DataUpdatedData
impl Sync for DataUpdatedData
impl Unpin for DataUpdatedData
impl UnsafeUnpin for DataUpdatedData
impl UnwindSafe for DataUpdatedData
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