| 20 | #[derive(Clone, Hash, PartialEq, Eq)] |
| 21 | #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] |
| 22 | pub struct PrimaryMap<K, V> |
| 23 | where |
| 24 | K: EntityRef, |
| 25 | { |
| 26 | elems: Vec<V>, |
| 27 | marker: PhantomData<K>, |
| 28 | } |
| 29 | |
| 30 | impl<K, V> PrimaryMap<K, V> |
| 31 | where |
nothing calls this directly
no outgoing calls
no test coverage detected