pub trait HealthProvider {
// Required method
fn health(&self) -> HealthReport;
}Required Methods§
fn health(&self) -> HealthReport
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".