Skip to main content

Readiness

Trait Readiness 

Source
pub trait Readiness: Send + Sync {
    // Required method
    fn report(&self) -> ReadinessReport;
}
Expand description

Trait for readiness checks.

Implementors should be cheap to query (no async, no blocking).

Required Methods§

Source

fn report(&self) -> ReadinessReport

Generate a readiness report for this component.

Implementors§