Iterator over all the keys and values of an entity map.
| 170 | |
| 171 | /// Iterator over all the keys and values of an entity map. |
| 172 | pub struct IntoIter<K: EntityRef, V> { |
| 173 | enumerate: Enumerate<vec::IntoIter<V>>, |
| 174 | marker: PhantomData<K>, |
| 175 | } |
| 176 | |
| 177 | impl<K: EntityRef, V> IntoIter<K, V> { |
| 178 | /// Create an `IntoIter` iterator that visits the keys and values of `iter`. |
nothing calls this directly
no outgoing calls
no test coverage detected