Clear all progress output (spinner, spacer, and completed step lines).
(&self)
| 373 | |
| 374 | /// Clear all progress output (spinner, spacer, and completed step lines). |
| 375 | fn clear(&self) { |
| 376 | self.spacer.finish_and_clear(); |
| 377 | self.spinner.finish_and_clear(); |
| 378 | for bar in &self.completed_bars { |
| 379 | bar.finish_and_clear(); |
| 380 | } |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | /// Format a duration as a compact elapsed time string, e.g. `(3s)` or `(1m 12s)`. |
no outgoing calls