pub struct DoctorReport {
pub generated_at: String,
pub target_kind: DebugTargetKind,
pub server: DebugServerKind,
pub summary: DoctorSummary,
pub checks: Vec<DoctorCheck>,
pub next_steps: Vec<String>,
}Expand description
Full alp doctor report for a target/server combination.
Fields§
§generated_at: StringISO-8601 timestamp the report was generated.
target_kind: DebugTargetKindTarget kind the report was run for.
server: DebugServerKindServer backend the report was run for.
summary: DoctorSummaryAggregate pass/warn/fail counts.
checks: Vec<DoctorCheck>Individual checks in evaluation order.
next_steps: Vec<String>Deduplicated remediation steps for non-passing checks.
Trait Implementations§
Source§impl Clone for DoctorReport
impl Clone for DoctorReport
Source§fn clone(&self) -> DoctorReport
fn clone(&self) -> DoctorReport
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 DoctorReport
impl Debug for DoctorReport
Auto Trait Implementations§
impl Freeze for DoctorReport
impl RefUnwindSafe for DoctorReport
impl Send for DoctorReport
impl Sync for DoctorReport
impl Unpin for DoctorReport
impl UnsafeUnpin for DoctorReport
impl UnwindSafe for DoctorReport
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