Get the error completion style. Format: `✗ Message` (in red)
()
| 342 | /// |
| 343 | /// Format: `✗ Message` (in red) |
| 344 | fn error_style() -> ProgressStyle { |
| 345 | ProgressStyle::with_template("{prefix:.red} {msg:.red}") |
| 346 | .expect("Invalid error template") |
| 347 | .tick_chars("✗ ") |
| 348 | } |
| 349 | |
| 350 | /// Get the byte-progress bar style. |
| 351 | /// |
no outgoing calls