(&mut self, index: I)
| 178 | impl<A: Array, I: SliceIndex<[A::Item]>> IndexMut<I> for ArrayVec<A> { |
| 179 | #[inline(always)] |
| 180 | fn index_mut(&mut self, index: I) -> &mut Self::Output { |
| 181 | &mut self.deref_mut()[index] |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | #[cfg(feature = "serde")] |