pub trait HealthClient {
// Required methods
fn check<'life0, 'async_trait>(
&'life0 self,
req: HealthCheckRequest
) -> Pin<Box<dyn Future<Output = Result<Response<HealthCheckResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn watch<'life0, 'async_trait>(
&'life0 self,
req: HealthCheckRequest
) -> Pin<Box<dyn Future<Output = Result<Response<Streaming<HealthCheckResponse>>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}