Crate progressed

source ·
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

Enums