MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / spinner_style

Function spinner_style

atomic-cli/src/output/progress.rs:314–318  ·  view source on GitHub ↗

Get the default spinner style. Format: `⠋ Message...`

()

Source from the content-addressed store, hash-verified

312///
313/// Format: `⠋ Message...`
314fn 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///

Callers 3

create_spinnerFunction · 0.85
add_spinnerFunction · 0.85
test_styles_dont_panicFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_styles_dont_panicFunction · 0.68