(&mut self, kind: FileKind)
| 85 | } |
| 86 | |
| 87 | pub fn len(&mut self, kind: FileKind) -> usize { |
| 88 | match kind { |
| 89 | FileKind::Compressible => self.compressible.files.len(), |
| 90 | FileKind::Compressed => self.compressed.files.len(), |
| 91 | FileKind::Skipped => self.skipped.files.len(), |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | pub fn pop(&mut self, kind: FileKind) -> Option<FileInfo> { |
| 96 | let ret = match kind { |
no outgoing calls
no test coverage detected