(&mut self, kind: FileKind, fi: FileInfo)
| 110 | } |
| 111 | |
| 112 | pub fn push(&mut self, kind: FileKind, fi: FileInfo) { |
| 113 | self.logical_size += fi.logical_size; |
| 114 | self.physical_size += fi.physical_size; |
| 115 | |
| 116 | match kind { |
| 117 | FileKind::Compressible => self.compressible.push(fi), |
| 118 | FileKind::Compressed => self.compressed.push(fi), |
| 119 | FileKind::Skipped => self.skipped.push(fi), |
| 120 | }; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | impl GroupInfo { |
no outgoing calls
no test coverage detected