| 56 | } |
| 57 | |
| 58 | pub trait IndexGetMut<'a, Idx, Output> |
| 59 | where |
| 60 | Idx: ?Sized, |
| 61 | Output: 'a, |
| 62 | { |
| 63 | fn xget_mut(&'a mut self, i: &Idx) -> Option<Output>; |
| 64 | } |
| 65 | |
| 66 | #[doc(hidden)] |
| 67 | mod private { |
nothing calls this directly
no outgoing calls
no test coverage detected