(iter: T)
| 296 | { |
| 297 | #[inline] |
| 298 | fn from_iter<T>(iter: T) -> Self |
| 299 | where |
| 300 | T: IntoIterator<Item = V>, |
| 301 | { |
| 302 | Self { |
| 303 | elems: Vec::from_iter(iter), |
| 304 | marker: PhantomData, |
| 305 | } |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | impl<K, V> From<Vec<V>> for PrimaryMap<K, V> |
nothing calls this directly
no outgoing calls
no test coverage detected