Get the warning completion style. Format: `⚠ Message` (in yellow)
()
| 342 | /// |
| 343 | /// Format: `⚠ Message` (in yellow) |
| 344 | fn warning_style() -> ProgressStyle { |
| 345 | ProgressStyle::with_template("{prefix:.yellow} {msg:.yellow}") |
| 346 | .expect("Invalid warning template") |
| 347 | .tick_chars("⚠ ") |
| 348 | } |
| 349 | |
| 350 | // Utility Functions |
| 351 |
no outgoing calls