Get the error completion style. Format: `✗ Message` (in red)
()
| 321 | /// |
| 322 | /// Format: `✗ Message` (in red) |
| 323 | fn error_style() -> ProgressStyle { |
| 324 | ProgressStyle::with_template("{prefix:.red} {msg:.red}") |
| 325 | .expect("Invalid error template") |
| 326 | .tick_chars("✗ ") |
| 327 | } |
| 328 | |
| 329 | /// Get the byte-progress bar style. |
| 330 | /// |
no outgoing calls