Set the active step from a known provisioning step enum.
(&mut self, step: ProvisioningStep)
| 340 | |
| 341 | /// Set the active step from a known provisioning step enum. |
| 342 | fn set_active_step(&mut self, step: ProvisioningStep) { |
| 343 | self.set_active(step.active_label()); |
| 344 | } |
| 345 | |
| 346 | /// Set detail text shown alongside the active step (e.g. image name). |
| 347 | fn set_active_detail(&mut self, detail: &str) { |
no test coverage detected