pub struct NetEventInfo {
pub event_type: String,
pub timestamp: String,
pub transition_name: Option<String>,
pub place_name: Option<String>,
pub details: HashMap<String, Value>,
}Expand description
Serializable event information.
Fields§
§event_type: String§timestamp: String§transition_name: Option<String>§place_name: Option<String>§details: HashMap<String, Value>Trait Implementations§
Source§impl Clone for NetEventInfo
impl Clone for NetEventInfo
Source§fn clone(&self) -> NetEventInfo
fn clone(&self) -> NetEventInfo
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 NetEventInfo
impl Debug for NetEventInfo
Source§impl<'de> Deserialize<'de> for NetEventInfo
impl<'de> Deserialize<'de> for NetEventInfo
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 NetEventInfo
impl RefUnwindSafe for NetEventInfo
impl Send for NetEventInfo
impl Sync for NetEventInfo
impl Unpin for NetEventInfo
impl UnsafeUnpin for NetEventInfo
impl UnwindSafe for NetEventInfo
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