pub struct TimestampedEvent {
pub timestamp: DateTime<Utc>,
pub relative_time_ms: u64,
pub event_type: String,
pub event_summary: String,
}Fields§
§timestamp: DateTime<Utc>§relative_time_ms: u64§event_type: String§event_summary: StringTrait Implementations§
Source§impl Clone for TimestampedEvent
impl Clone for TimestampedEvent
Source§fn clone(&self) -> TimestampedEvent
fn clone(&self) -> TimestampedEvent
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 TimestampedEvent
impl Debug for TimestampedEvent
Source§impl<'de> Deserialize<'de> for TimestampedEvent
impl<'de> Deserialize<'de> for TimestampedEvent
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 TimestampedEvent
impl RefUnwindSafe for TimestampedEvent
impl Send for TimestampedEvent
impl Sync for TimestampedEvent
impl Unpin for TimestampedEvent
impl UnsafeUnpin for TimestampedEvent
impl UnwindSafe for TimestampedEvent
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