Get the default spinner style. Format: `⠋ Message...`
()
| 312 | /// |
| 313 | /// Format: `⠋ Message...` |
| 314 | fn spinner_style() -> ProgressStyle { |
| 315 | ProgressStyle::with_template("{spinner:.cyan} {msg}") |
| 316 | .expect("Invalid spinner template") |
| 317 | .tick_chars(SPINNER_CHARS) |
| 318 | } |
| 319 | |
| 320 | /// Get the default progress bar style. |
| 321 | /// |
no outgoing calls