(&self, topic_path: &TopicPath)
| 157 | } |
| 158 | |
| 159 | pub fn downset(&self, topic_path: &TopicPath) -> DownsetIter<'_> { |
| 160 | DownsetIter::new( |
| 161 | self, |
| 162 | topic_path.repo_id, |
| 163 | self.fetch_topic(topic_path.repo_id, &topic_path.topic_id), |
| 164 | ) |
| 165 | } |
| 166 | |
| 167 | pub fn exists(&self, repo_id: RepoId, id: &ExternalId) -> Result<bool> { |
| 168 | if !self.viewer.can_read(repo_id) { |
nothing calls this directly
no test coverage detected