(&self, entry: FileEntry)
| 23 | } |
| 24 | |
| 25 | pub fn insert(&self, entry: FileEntry) { |
| 26 | self.files.insert(entry.rel_path.clone(), entry); |
| 27 | } |
| 28 | |
| 29 | pub fn remove(&self, rel_path: &str) -> Option<FileEntry> { |
| 30 | self.files.remove(rel_path).map(|(_, v)| v) |
no outgoing calls
no test coverage detected