pub trait ComponentHealthChecker: Send + Sync {
// Required methods
fn component_name(&self) -> &str;
fn check_health(
&self,
) -> Pin<Box<dyn Future<Output = ComponentHealth> + Send + '_>>;
}Expand description
Component health checker trait