A view into an occupied entry in an [`SparseMap`]. It is part of the [`Entry`] enum.
| 470 | where |
| 471 | K: EntityRef, |
| 472 | { |
| 473 | map: &'a mut SparseMap<K, V>, |
| 474 | index: usize, |
| 475 | } |
| 476 | |
| 477 | impl<'a, K, V> OccupiedEntry<'a, K, V> |
| 478 | where |
| 479 | K: EntityRef, |
| 480 | { |
| 481 | /// Return the index of the key-value pair |
nothing calls this directly
no outgoing calls
no test coverage detected