pco 0.4.7

Good compression for numerical sequences
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Information about progress after calling a decompression function.
#[derive(Clone, Copy, Debug, Default)]
pub struct Progress {
  /// The count of numbers written to `dst`.
  pub n_processed: usize,
  /// Whether the decompressor finished all compressed data relevant to
  /// the unit.
  /// For instance,
  /// [`PageDecompressor::decompress`][crate::wrapped::PageDecompressor::decompress]
  /// will return whether all data in the page was finished.
  pub finished: bool,
}