| 82 | fn get_ref(&self, key: &'_ Idx) -> Option<&data::Data>; |
| 83 | } |
| 84 | pub trait IndexGetDataMut<Idx> |
| 85 | where |
| 86 | Idx: ?Sized, |
| 87 | { |
| 88 | fn get_mut(&mut self, key: &'_ Idx) -> Option<&mut data::Data>; |
| 89 | } |
| 90 | |
| 91 | impl<Idx, T, U> IndexSet<Idx, U> for T |
| 92 | where |
nothing calls this directly
no outgoing calls
no test coverage detected