pub trait HealthChecker: Send + Sync {
// Required methods
fn check_provider_health<'life0, 'life1, 'async_trait>(
&'life0 self,
provider_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<HealthStatus>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn check_storage_health<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<StorageHealth>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn check_connectivity<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<ConnectivityStatus>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
健康检查 trait