(&self)
| 208 | |
| 209 | impl RepoTopicWrapper { |
| 210 | pub fn child_ids(&self) -> Vec<ExternalId> { |
| 211 | self.repo_topic |
| 212 | .children |
| 213 | .iter() |
| 214 | .map(|child| child.id.to_owned()) |
| 215 | .collect_vec() |
| 216 | } |
| 217 | |
| 218 | pub fn child_link_ids(&self) -> Vec<ExternalId> { |
| 219 | self.repo_topic |