| 13 | } |
| 14 | |
| 15 | pub trait SliceWrapperMut<T> : SliceWrapper<T> { |
| 16 | fn slice_mut (&mut self) -> & mut [T]; |
| 17 | } |
| 18 | |
| 19 | pub trait AllocatedSlice<T> |
| 20 | : SliceWrapperMut<T> + SliceWrapper<T> + Default { |
nothing calls this directly
no outgoing calls
no test coverage detected