pub trait HealthCheck: Send {
// Required methods
fn name(&self) -> String;
fn check_health(&mut self) -> HealthCheckStatus;
}pub trait HealthCheck: Send {
// Required methods
fn name(&self) -> String;
fn check_health(&mut self) -> HealthCheckStatus;
}