pub trait HealthVerificationProxyInterface: Send + Sync {
type QueryHealthChecksResponseFut: Future<Output = Result<i32, Error>> + Send;
// Required method
fn query_health_checks(&self) -> Self::QueryHealthChecksResponseFut;
}Required Associated Types§
Required Methods§
fn query_health_checks(&self) -> Self::QueryHealthChecksResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".