(&self, filename: &Path)
| 186 | } |
| 187 | |
| 188 | pub fn blob_exists(&self, filename: &Path) -> Result<bool> { |
| 189 | let blob = self.find_blob_by_filename(filename)?; |
| 190 | Ok(blob.is_some()) |
| 191 | } |
| 192 | |
| 193 | pub fn change(&self, id: &ExternalId) -> Result<activity::Change> { |
| 194 | let result = self.find_blob_by_filename(&id.change_filename()?)?; |
no test coverage detected