pub struct HealthChecker { /* private fields */ }Expand description
Health checker for the workspace.
Implementations§
Source§impl HealthChecker
impl HealthChecker
Sourcepub async fn check_all(&self, verbose: bool) -> Result<HealthReport>
pub async fn check_all(&self, verbose: bool) -> Result<HealthReport>
Run all health checks in parallel.
Sourcepub async fn check_selected(
&self,
check_types: &[HealthCheckType],
verbose: bool,
) -> Result<HealthReport>
pub async fn check_selected( &self, check_types: &[HealthCheckType], verbose: bool, ) -> Result<HealthReport>
Run selected health checks in parallel.
Auto Trait Implementations§
impl Freeze for HealthChecker
impl RefUnwindSafe for HealthChecker
impl Send for HealthChecker
impl Sync for HealthChecker
impl Unpin for HealthChecker
impl UnwindSafe for HealthChecker
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