| 17 | use enum_as_inner::EnumAsInner; |
| 18 | |
| 19 | pub trait IndexGet<Idx, Output> |
| 20 | where |
| 21 | Idx: ?Sized, |
| 22 | { |
| 23 | fn get(&self, index: Idx) -> Option<Output>; |
| 24 | } |
| 25 | |
| 26 | pub trait IndexSet<Idx, Value> |
| 27 | where |
nothing calls this directly
no outgoing calls
no test coverage detected