(&mut self, name: String, generate: TypeGeneration)
| 69 | } |
| 70 | |
| 71 | fn insert(&mut self, name: String, generate: TypeGeneration) { |
| 72 | self.map.insert(name, generate); |
| 73 | } |
| 74 | |
| 75 | fn iter(&self) -> impl Iterator<Item = (&String, &TypeGeneration)> { |
| 76 | self.map.iter() |
no outgoing calls
no test coverage detected