golem_client::apiTrait HealthCheckClient
source pub trait HealthCheckClient {
// Required methods
fn healthcheck<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<HealthcheckResponse, Error<HealthCheckError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn version<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<VersionInfo, Error<HealthCheckError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}