pub trait HealthCheckConfigExt {
// Required methods
fn conservative() -> HealthCheckConfig;
fn aggressive() -> HealthCheckConfig;
fn minimal() -> HealthCheckConfig;
}Required Methods§
Sourcefn conservative() -> HealthCheckConfig
fn conservative() -> HealthCheckConfig
Create a conservative health check configuration
Sourcefn aggressive() -> HealthCheckConfig
fn aggressive() -> HealthCheckConfig
Create an aggressive health check configuration
Sourcefn minimal() -> HealthCheckConfig
fn minimal() -> HealthCheckConfig
Create a minimal health check configuration
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.