(&mut self)
| 163 | impl<A: Array> DerefMut for ArrayVec<A> { |
| 164 | #[inline(always)] |
| 165 | fn deref_mut(&mut self) -> &mut Self::Target { |
| 166 | &mut self.data.as_slice_mut()[..self.len as usize] |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | impl<A: Array, I: SliceIndex<[A::Item]>> Index<I> for ArrayVec<A> { |
no test coverage detected