(elems: Vec<V>)
| 312 | { |
| 313 | #[inline] |
| 314 | fn from(elems: Vec<V>) -> Self { |
| 315 | Self { |
| 316 | elems, |
| 317 | marker: PhantomData, |
| 318 | } |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | impl<K, V> fmt::Debug for PrimaryMap<K, V> |
nothing calls this directly
no outgoing calls
no test coverage detected