| 17 | } |
| 18 | |
| 19 | pub trait AllocatedSlice<T> |
| 20 | : SliceWrapperMut<T> + SliceWrapper<T> + Default { |
| 21 | } |
| 22 | |
| 23 | impl<T, U> AllocatedSlice<T> for U where U : SliceWrapperMut<T> + SliceWrapper<T> + Default { |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected