(&self, topic_path: &TopicPath)
| 404 | } |
| 405 | |
| 406 | pub fn topic_downset(&self, topic_path: &TopicPath) -> TopicDownsetIter<'_> { |
| 407 | TopicDownsetIter::new( |
| 408 | self, |
| 409 | topic_path.repo_id, |
| 410 | self.fetch_topic(topic_path.repo_id, &topic_path.topic_id), |
| 411 | ) |
| 412 | } |
| 413 | |
| 414 | fn topic_searches( |
| 415 | &self, |
no test coverage detected