hypeviewer 1.0.0

Educational Clone of Pipviewer
Documentation
1
2
3
4
5
6
7
8
9
//! Hypeviewer - A simple clone of `pipeviewer`

pub mod args;
pub mod read;
pub mod stats;
pub mod write;

// constant value : persistent buffer size (16 Kb)
const BUF_SIZE: usize = 16 * 1024;