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

Function spinner_style

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

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

()

Source from the content-addressed store, hash-verified

291///
292/// Format: `⠋ Message...`
293fn 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///

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