pub type ClusterStatus = ServiceStatus;
Expand description

The status of a cluster.

Aliased Type§

enum ClusterStatus {
    Ready,
    NotReady(Option<NotReadyReason>),
}

Variants§

§

Ready

Service is ready to accept requests.

§

NotReady(Option<NotReadyReason>)

Service is not ready to accept requests. The inner element is None if the reason is unknown