pub trait PlatformService: Send + Sync {
// Required methods
fn identity(&self) -> PlatformIdentity;
fn readiness_gate(&self) -> Arc<dyn ReadinessGate> ⓘ;
fn leadership(&self) -> Arc<dyn LeadershipService> ⓘ;
}Expand description
Platform service abstraction.