Total compressed size across all chunks (bytes on the wire).
(&self)
| 289 | |
| 290 | /// Total compressed size across all chunks (bytes on the wire). |
| 291 | pub fn total_compressed(&self) -> u64 { |
| 292 | self.entries.iter().map(|e| e.compressed_size as u64).sum() |
| 293 | } |
| 294 | |
| 295 | /// Total uncompressed size across all chunks (original data size). |
| 296 | pub fn total_uncompressed(&self) -> u64 { |