pub trait HealthChecker: Send + Sync {
// Required method
fn check<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = HealthCheck> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
健康检查器 trait