pub struct LocalRuntimeEventSnapshot {
pub timestamp: DateTime<Utc>,
pub severity: HeartbeatIssueSeverity,
pub kind: String,
pub message: String,
pub subject: Option<LocalRuntimeEventSubject>,
pub raw: Option<Value>,
}Fields§
§timestamp: DateTime<Utc>§severity: HeartbeatIssueSeverity§kind: String§message: String§subject: Option<LocalRuntimeEventSubject>§raw: Option<Value>Trait Implementations§
Source§impl Clone for LocalRuntimeEventSnapshot
impl Clone for LocalRuntimeEventSnapshot
Source§fn clone(&self) -> LocalRuntimeEventSnapshot
fn clone(&self) -> LocalRuntimeEventSnapshot
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 LocalRuntimeEventSnapshot
impl Debug for LocalRuntimeEventSnapshot
Source§impl<'de> Deserialize<'de> for LocalRuntimeEventSnapshot
impl<'de> Deserialize<'de> for LocalRuntimeEventSnapshot
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
Source§impl PartialEq for LocalRuntimeEventSnapshot
impl PartialEq for LocalRuntimeEventSnapshot
Source§fn eq(&self, other: &LocalRuntimeEventSnapshot) -> bool
fn eq(&self, other: &LocalRuntimeEventSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LocalRuntimeEventSnapshot
Auto Trait Implementations§
impl Freeze for LocalRuntimeEventSnapshot
impl RefUnwindSafe for LocalRuntimeEventSnapshot
impl Send for LocalRuntimeEventSnapshot
impl Sync for LocalRuntimeEventSnapshot
impl Unpin for LocalRuntimeEventSnapshot
impl UnsafeUnpin for LocalRuntimeEventSnapshot
impl UnwindSafe for LocalRuntimeEventSnapshot
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