Human-readable label for an in-progress step (shown on the spinner).
(self)
| 233 | |
| 234 | /// Human-readable label for an in-progress step (shown on the spinner). |
| 235 | fn active_label(self) -> &'static str { |
| 236 | match self { |
| 237 | Self::RequestingSandbox => "Requesting sandbox...", |
| 238 | Self::PullingSandboxImage => "Pulling image...", |
| 239 | Self::StartingSandbox => "Starting sandbox...", |
| 240 | } |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | /// Live-updating display showing a provisioning step checklist with spinner. |
no outgoing calls
no test coverage detected