pub struct RemoteEvent {
pub name: String,
pub timestamp: SystemTime,
pub properties: BTreeMap<String, RemoteValue>,
}Fields§
§name: String§timestamp: SystemTime§properties: BTreeMap<String, RemoteValue>Trait Implementations§
Source§impl Clone for RemoteEvent
impl Clone for RemoteEvent
Source§fn clone(&self) -> RemoteEvent
fn clone(&self) -> RemoteEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemoteEvent
impl Debug for RemoteEvent
Source§impl Serialize for RemoteEvent
impl Serialize for RemoteEvent
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for RemoteEvent
impl RefUnwindSafe for RemoteEvent
impl Send for RemoteEvent
impl Sync for RemoteEvent
impl Unpin for RemoteEvent
impl UnsafeUnpin for RemoteEvent
impl UnwindSafe for RemoteEvent
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