countio 0.3.0

Byte counting for std::io::{Read, Write, Seek} and its async variants from futures and tokio.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Convenience re-exports for glob imports.
//!
//! This module provides a quick way to import the most commonly used types:
//!
//! ```rust
//! use countio::prelude::*;
//!
//! let counter = Counter::new(Vec::<u8>::new());
//! let progress = Progress::with_expected_writer_bytes(Vec::<u8>::new(), 100);
//! ```

pub use crate::{Counter, Progress};