pub struct DiagnosticReport {
pub report_id: String,
pub timestamp: String,
pub results: Vec<DiagnosticResult>,
pub summary: Option<DiagnosticSummary>,
pub extra: Value,
}
Expand description
Diagnostic report
Fields§
§report_id: String
Unique identifier for this diagnostic report
timestamp: String
Timestamp when the report was generated
results: Vec<DiagnosticResult>
List of individual diagnostic check results
summary: Option<DiagnosticSummary>
Summary statistics of the diagnostic run
extra: Value
Trait Implementations§
Source§impl Clone for DiagnosticReport
impl Clone for DiagnosticReport
Source§fn clone(&self) -> DiagnosticReport
fn clone(&self) -> DiagnosticReport
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 DiagnosticReport
impl Debug for DiagnosticReport
Source§impl<'de> Deserialize<'de> for DiagnosticReport
impl<'de> Deserialize<'de> for DiagnosticReport
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 DiagnosticReport
impl RefUnwindSafe for DiagnosticReport
impl Send for DiagnosticReport
impl Sync for DiagnosticReport
impl Unpin for DiagnosticReport
impl UnwindSafe for DiagnosticReport
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