(&self, repo_id: RepoId, topic_id: &ExternalId)
| 284 | } |
| 285 | |
| 286 | pub fn fetch_topic(&self, repo_id: RepoId, topic_id: &ExternalId) -> Option<RepoTopic> { |
| 287 | match &self.fetch(repo_id, topic_id)? { |
| 288 | RepoObject::Topic(topic) => Some(topic.to_owned()), |
| 289 | _ => None, |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | pub fn leaked_data(&self) -> Result<Vec<(RepoId, String)>> { |
| 294 | LeakedData.call(self) |
no test coverage detected