src/backup/chunk_stat.rs: new struct to track chunk statistics

This commit is contained in:
Dietmar Maurer
2019-02-25 12:52:10 +01:00
parent 798f7fa065
commit 7e3365554e
4 changed files with 70 additions and 28 deletions

View File

@ -11,6 +11,9 @@
//! whereas the `FixedIndex*` format is an optimization to store a
//! list of equal sized chunks.
mod chunk_stat;
pub use chunk_stat::*;
mod chunker;
pub use chunker::*;