Expand description
§Progressed
An easy to use and highly configurable library to show the progress of applications, calculations, etc.
§Example Usage
use std::{thread, time::Duration};
use progressed::{ProgressBar, ProgressBarStyle};
for _ in ProgressBar::new(0..100)
.set_style(ProgressBarStyle::default())
.set_title("progress bar: ")
{
thread::sleep(Duration::from_millis(50));
}
Structs§
- Loading
Spinner - Draws a loading spinner that updates when you call tick.
- Loading
Spinner Style - Used to style a loading spinner.
- Progress
Bar - Draws a progress bar while iterating over a finite range.
- Progress
BarStyle - Used to style a progress bar.
- Unbound
Progress Bar - Draws a progress bar while iterating over a range.
- Unbound
Progress BarStyle - Used to style a progress bar.