Get the default spinner style. Format: `⠋ Message...`
()
| 291 | /// |
| 292 | /// Format: `⠋ Message...` |
| 293 | fn spinner_style() -> ProgressStyle { |
| 294 | ProgressStyle::with_template("{spinner:.cyan} {msg}") |
| 295 | .expect("Invalid spinner template") |
| 296 | .tick_chars(SPINNER_CHARS) |
| 297 | } |
| 298 | |
| 299 | /// Get the default progress bar style. |
| 300 | /// |
no outgoing calls