Get the warning completion style. Format: `⚠ Message` (in yellow)
()
| 363 | /// |
| 364 | /// Format: `⚠ Message` (in yellow) |
| 365 | fn warning_style() -> ProgressStyle { |
| 366 | ProgressStyle::with_template("{prefix:.yellow} {msg:.yellow}") |
| 367 | .expect("Invalid warning template") |
| 368 | .tick_chars("⚠ ") |
| 369 | } |
| 370 | |
| 371 | // Utility Functions |
| 372 |
no outgoing calls