(&self)
| 774 | |
| 775 | impl UpsertTopicTimerange { |
| 776 | fn paths(&self) -> HashSet<&ExternalId> { |
| 777 | let mut ids = HashSet::from([&self.updated_topic.id]); |
| 778 | for parent_id in &self.parent_topics { |
| 779 | ids.insert(parent_id); |
| 780 | } |
| 781 | ids |
| 782 | } |
| 783 | |
| 784 | fn mark_deleted(&mut self, id: &ExternalId) { |
| 785 | let parents = &mut self.parent_topics; |