Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/daniel-thompson/progress-rs

Rust extension traits to visualize the progress of iterators
https://github.com/daniel-thompson/progress-rs

Last synced: about 2 months ago
JSON representation

Rust extension traits to visualize the progress of iterators

Awesome Lists containing this project

README

        

A small library of extension traits to control and monitor the progress
of iterators.

# Examples

```rust
use progress::*;

for n in (0..27)
.rate_limit(std::time::Duration::from_millis(10))
.show_percent()
{
// do something interesting...
}
```