Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/daniel-thompson/progress-rs
- Owner: daniel-thompson
- License: gpl-3.0
- Created: 2022-12-08T10:13:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T10:13:56.000Z (about 2 years ago)
- Last Synced: 2024-04-29T00:17:20.342Z (8 months ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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...
}
```