cli_pipeviewer 0.1.0

An educational version of the pv utility
Documentation
1
2
3
4
5
6
7
8
9
//! Pipeviewer library documentation
pub mod args;
pub mod read;
pub mod stats;
pub mod write;

// Define CHUNK_SIZE -> constant for our buffer => 16 kilobytes
// const CHUNK_SIZE: usize = value in kilobytes;
const CHUNK_SIZE: usize = 16 * 1024;