Crate termprogress
Source - prelude
- The prelude exposes the traits for spinners and progress bars, and the
spinner::Spin
and progress::Bar
types for easy access and use. - progress
- silent
- A silent progress bar and spinner that does nothing.
- spinner
- A simple character spinner for bars with no known size
- wheel
- Contains infinite
char
iterators and the type wrapping them, Wheel
.
- assert_is_bar
- Display
- A trait for all bars’ displaying
- ProgressBar
- A trait for any bar with progress. You can implemnent your own styles through this trait.
- Spinner
- A trait for any bar without progress. You can implemnent your own styles through this trait.
- WithTitle
- A trait for creating a progress bar or spinner with a title.
- has_terminal_output
- Returns true if
f
has a terminal output and can be used with terminal size responsiveness. - has_terminal_output_default
- Returns true if
stdout
has a terminal output and can be used with terminal size responsiveness.