(&self, repo_id: RepoId, topic_id: &str)
| 104 | } |
| 105 | |
| 106 | pub fn topic(&self, repo_id: RepoId, topic_id: &str) -> RepoTopic { |
| 107 | let topic_id = ExternalId::try_from(topic_id).unwrap(); |
| 108 | self.git.fetch_topic(repo_id, &topic_id).unwrap() |
| 109 | } |
| 110 | |
| 111 | pub fn find_topic(&self, name: &str) -> Option<ExternalId> { |
| 112 | let FetchTopicLiveSearchResult { |
no test coverage detected