pub struct DiagnosticLogEntry {
pub level: String,
pub source: String,
pub code: String,
pub message: String,
pub detail: Option<String>,
pub detail_samples: Vec<String>,
pub first_at_ms: i64,
pub last_at_ms: i64,
pub repeat_count: i32,
}Fields§
§level: String§source: String§code: String§message: String§detail: Option<String>§detail_samples: Vec<String>§first_at_ms: i64§last_at_ms: i64§repeat_count: i32Trait Implementations§
Source§impl Clone for DiagnosticLogEntry
impl Clone for DiagnosticLogEntry
Source§fn clone(&self) -> DiagnosticLogEntry
fn clone(&self) -> DiagnosticLogEntry
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 DiagnosticLogEntry
impl Debug for DiagnosticLogEntry
Source§impl Default for DiagnosticLogEntry
impl Default for DiagnosticLogEntry
Source§fn default() -> DiagnosticLogEntry
fn default() -> DiagnosticLogEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DiagnosticLogEntrywhere
DiagnosticLogEntry: Default,
impl<'de> Deserialize<'de> for DiagnosticLogEntrywhere
DiagnosticLogEntry: Default,
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 DiagnosticLogEntry
impl PartialEq for DiagnosticLogEntry
Source§impl Serialize for DiagnosticLogEntry
impl Serialize for DiagnosticLogEntry
impl Eq for DiagnosticLogEntry
impl StructuralPartialEq for DiagnosticLogEntry
Auto Trait Implementations§
impl Freeze for DiagnosticLogEntry
impl RefUnwindSafe for DiagnosticLogEntry
impl Send for DiagnosticLogEntry
impl Sync for DiagnosticLogEntry
impl Unpin for DiagnosticLogEntry
impl UnsafeUnpin for DiagnosticLogEntry
impl UnwindSafe for DiagnosticLogEntry
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