pub struct DoctorReport {
pub socket_path: String,
pub socket_exists: bool,
pub ping_ok: bool,
pub tool_count: Option<usize>,
pub error: Option<String>,
}Fields§
§socket_path: String§socket_exists: bool§ping_ok: bool§tool_count: Option<usize>§error: Option<String>Trait Implementations§
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