(&mut self, resources: ResourceCollection)
| 28 | } |
| 29 | |
| 30 | async fn initialize(&mut self, resources: ResourceCollection) { |
| 31 | self.resources = Some(resources); |
| 32 | } |
| 33 | async fn finalize(&mut self) { |
| 34 | for (_, task) in std::mem::take(&mut self.tasks) { |
| 35 | task.await.ok(); |
nothing calls this directly
no outgoing calls
no test coverage detected