(&self)
| 684 | ) -> Option<Uuid> { |
| 685 | let node = CollectionNode::Request(CollectionRequestNode::new_saved(request)); |
| 686 | let node_id = node.id(); |
| 687 | |
| 688 | let Some(collection) = self.collections.iter_mut().find(|c| c.id == collection_id) else { |
| 689 | return None; |
| 690 | }; |
| 691 |
nothing calls this directly
no outgoing calls
no test coverage detected