Trait golem_client::healthcheck::Healthcheck
source · pub trait Healthcheck {
// Required methods
fn healthcheck<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(), 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, HealthcheckError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}