pub struct DoctorReport {
pub version: String,
pub checks: Vec<Check>,
pub all_pass: bool,
}Expand description
Overall doctor report.
Fields§
§version: String§checks: Vec<Check>§all_pass: boolTrait Implementations§
Source§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