progressive
A rust library for showing progress of iterators and loops.
Documentation
To create the documentation run:
cargo doc
Usage
To use progressive, add this to your Cargo.toml:
[]
= "0.1"
And this to your crate root:
extern crate progressive;
Here's a simple example that shows how to wrap an iterator tin order to get progress information:
extern crate progressive;
use progress;
use Duration;
For an example run cargo run --example basic