(&self, write_repo_ids: &RepoIds)
| 355 | |
| 356 | impl Topic { |
| 357 | pub fn can_update(&self, write_repo_ids: &RepoIds) -> bool { |
| 358 | self.repo_topics |
| 359 | .iter() |
| 360 | .any(|topic| write_repo_ids.include(topic.repo_id)) |
| 361 | } |
| 362 | |
| 363 | pub fn child_link_ids(&self) -> Vec<ExternalId> { |
| 364 | self.repo_topics |
no test coverage detected