1use core::iter::{
2FusedIterator, InPlaceIterable, SourceIter, TrustedFused, TrustedLen,
3 TrustedRandomAccessNoCoerce,
4};
5use core::marker::PhantomData;
6use core::mem::{DropGuard, ManuallyDrop, MaybeUninit, SizedTypeProperties};
7use core::num::NonZero;
8#[cfg(not(no_global_oom_handling))]
9use core::ops::Deref;
10use core::panic::UnwindSafe;
11use core::ptr::{self, NonNull};
12use core::{array, fmt, slice};
1314#[cfg(not(no_global_oom_handling))]
15use super::AsVecIntoIter;
16use crate::alloc::{Allocator, Global};
17#[cfg(not(no_global_oom_handling))]
18use crate::collections::VecDeque;
19use crate::raw_vec::RawVec;
2021macro non_null {
22 (mut $place:expr, $t:ident) => {{
23#![allow(unused_unsafe)] // we're sometimes used within an unsafe block
24 // ignore-tidy-undocumented-unsafe
25unsafe { &mut *((&raw mut $place) as *mut NonNull<$t>) }
26 }},
27 ($place:expr, $t:ident) => {{
28#![allow(unused_unsafe)] // we're sometimes used within an unsafe block
29 // ignore-tidy-undocumented-unsafe
30unsafe { *((&raw const $place) as *const NonNull<$t>) }
31 }},
32}
3334/// An iterator that moves out of a vector.
35///
36/// This `struct` is created by the `into_iter` method on [`Vec`](super::Vec)
37/// (provided by the [`IntoIterator`] trait).
38///
39/// # Example
40///
41/// ```
42/// let v = vec![0, 1, 2];
43/// let iter: std::vec::IntoIter<_> = v.into_iter();
44/// ```
45#[stable(feature = "rust1", since = "1.0.0")]
46#[rustc_insignificant_dtor]
47pub struct IntoIter<
48 T,
49#[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global,
50> {
51pub(super) buf: NonNull<T>,
52pub(super) phantom: PhantomData<T>,
53pub(super) cap: usize,
54// the drop impl reconstructs a RawVec from buf, cap and alloc
55 // to avoid dropping the allocator twice we need to wrap it into ManuallyDrop
56pub(super) alloc: ManuallyDrop<A>,
57pub(super) ptr: NonNull<T>,
58/// If T is a ZST, this is actually ptr+len. This encoding is picked so that
59 /// ptr == end is a quick test for the Iterator being empty, that works
60 /// for both ZST and non-ZST.
61 /// For non-ZSTs the pointer is treated as `NonNull<T>`
62pub(super) end: *const T,
63}
6465// Manually mirroring what `Vec` has,
66// because otherwise we get `T: RefUnwindSafe` from `NonNull`.
67#[stable(feature = "catch_unwind", since = "1.9.0")]
68impl<T: UnwindSafe, A: Allocator + UnwindSafe> UnwindSafefor IntoIter<T, A> {}
6970#[stable(feature = "vec_intoiter_debug", since = "1.13.0")]
71impl<T: fmt::Debug, A: Allocator> fmt::Debugfor IntoIter<T, A> {
72fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
73f.debug_tuple("IntoIter").field(&self.as_slice()).finish()
74 }
75}
7677impl<T, A: Allocator> IntoIter<T, A> {
78/// Returns the remaining items of this iterator as a slice.
79 ///
80 /// # Examples
81 ///
82 /// ```
83 /// let vec = vec!['a', 'b', 'c'];
84 /// let mut into_iter = vec.into_iter();
85 /// assert_eq!(into_iter.as_slice(), &['a', 'b', 'c']);
86 /// let _ = into_iter.next().unwrap();
87 /// assert_eq!(into_iter.as_slice(), &['b', 'c']);
88 /// ```
89#[stable(feature = "vec_into_iter_as_slice", since = "1.15.0")]
90pub fn as_slice(&self) -> &[T] {
91// ignore-tidy-undocumented-unsafe
92unsafe { slice::from_raw_parts(self.ptr.as_ptr(), self.len()) }
93 }
9495/// Returns the remaining items of this iterator as a mutable slice.
96 ///
97 /// # Examples
98 ///
99 /// ```
100 /// let vec = vec!['a', 'b', 'c'];
101 /// let mut into_iter = vec.into_iter();
102 /// assert_eq!(into_iter.as_slice(), &['a', 'b', 'c']);
103 /// into_iter.as_mut_slice()[2] = 'z';
104 /// assert_eq!(into_iter.next().unwrap(), 'a');
105 /// assert_eq!(into_iter.next().unwrap(), 'b');
106 /// assert_eq!(into_iter.next().unwrap(), 'z');
107 /// ```
108#[stable(feature = "vec_into_iter_as_slice", since = "1.15.0")]
109pub fn as_mut_slice(&mut self) -> &mut [T] {
110// ignore-tidy-undocumented-unsafe
111unsafe { &mut *self.as_raw_mut_slice() }
112 }
113114/// Returns a reference to the underlying allocator.
115#[unstable(feature = "allocator_api", issue = "32838")]
116 #[inline]
117pub fn allocator(&self) -> &A {
118&self.alloc
119 }
120121fn as_raw_mut_slice(&mut self) -> *mut [T] {
122self.ptr.as_ptr().cast_slice(self.len())
123 }
124125/// Drops remaining elements and relinquishes the backing allocation.
126 ///
127 /// This method guarantees it won't panic before relinquishing the backing
128 /// allocation.
129 ///
130 /// This is roughly equivalent to the following, but more efficient
131 ///
132 /// ```
133 /// # let mut vec = Vec::<u8>::with_capacity(10);
134 /// # let ptr = vec.as_mut_ptr();
135 /// # let mut into_iter = vec.into_iter();
136 /// let mut into_iter = std::mem::replace(&mut into_iter, Vec::new().into_iter());
137 /// (&mut into_iter).for_each(drop);
138 /// std::mem::forget(into_iter);
139 /// # // FIXME(https://github.com/rust-lang/miri/issues/3670):
140 /// # // use -Zmiri-disable-leak-check instead of unleaking in tests meant to leak.
141 /// # drop(unsafe { Vec::<u8>::from_raw_parts(ptr, 0, 10) });
142 /// ```
143 ///
144 /// This method is used by in-place iteration, refer to the vec::in_place_collect
145 /// documentation for an overview.
146#[cfg(not(no_global_oom_handling))]
147pub(super) fn forget_allocation_drop_remaining(&mut self) {
148let remaining = self.as_raw_mut_slice();
149150// overwrite the individual fields instead of creating a new
151 // struct and then overwriting &mut self.
152 // this creates less assembly
153self.cap = 0;
154self.buf = RawVec::new().non_null();
155self.ptr = self.buf;
156self.end = self.buf.as_ptr();
157158// Dropping the remaining elements can panic, so this needs to be
159 // done only after updating the other fields.
160 // ignore-tidy-undocumented-unsafe
161unsafe {
162 ptr::drop_in_place(remaining);
163 }
164 }
165166/// Forgets to Drop the remaining elements while still allowing the backing allocation to be freed.
167 ///
168 /// This method does not consume `self`, and leaves deallocation to `impl Drop for IntoIter`.
169 /// If consuming `self` is possible, consider calling
170 /// [`Self::forget_remaining_elements_and_dealloc()`] instead.
171pub(crate) fn forget_remaining_elements(&mut self) {
172// For the ZST case, it is crucial that we mutate `end` here, not `ptr`.
173 // `ptr` must stay aligned, while `end` may be unaligned.
174self.end = self.ptr.as_ptr();
175 }
176177/// Forgets to Drop the remaining elements and frees the backing allocation.
178 /// Consuming version of [`Self::forget_remaining_elements()`].
179 ///
180 /// This can be used in place of `drop(self)` when `self` is known to be exhausted,
181 /// to avoid producing a needless `drop_in_place::<[T]>()`.
182#[inline]
183pub(crate) fn forget_remaining_elements_and_dealloc(self) {
184let mut this = ManuallyDrop::new(self);
185// SAFETY: `this` is in ManuallyDrop, so it will not be double-freed.
186unsafe {
187this.dealloc_only();
188 }
189 }
190191/// Frees the allocation, without checking or dropping anything else.
192 ///
193 /// The safe version of this method is [`Self::forget_remaining_elements_and_dealloc()`].
194 /// This function exists only to share code between that method and the `impl Drop`.
195 ///
196 /// # Safety
197 ///
198 /// This function must only be called with an [`IntoIter`] that is not going to be dropped
199 /// or otherwise used in any way, either because it is being forgotten or because its `Drop`
200 /// is already executing; otherwise a double-free will occur, and possibly a read from freed
201 /// memory if there are any remaining elements.
202#[inline]
203unsafe fn dealloc_only(&mut self) {
204// SAFETY: our caller promises not to touch `*self` again.
205let alloc = unsafe { ManuallyDrop::take(&mut self.alloc) };
206// SAFETY: We're using this to deallocate a preexisting `RawVec`.
207let _ = unsafe { RawVec::from_nonnull_in(self.buf, self.cap, alloc) };
208 }
209210#[cfg(not(no_global_oom_handling))]
211 #[inline]
212pub(crate) fn into_vecdeque(self) -> VecDeque<T, A> {
213// Keep our `Drop` impl from dropping the elements and the allocator
214let mut this = ManuallyDrop::new(self);
215216// SAFETY: This allocation originally came from a `Vec`, so it passes
217 // all those checks. We have `this.buf` ≤ `this.ptr` ≤ `this.end`,
218 // so the `offset_from_unsigned`s below cannot wrap, and will produce a well-formed
219 // range. `end` ≤ `buf + cap`, so the range will be in-bounds.
220 // Taking `alloc` is ok because nothing else is going to look at it,
221 // since our `Drop` impl isn't going to run so there's no more code.
222unsafe {
223let buf = this.buf.as_ptr();
224let initialized = if T::IS_ZST {
225// All the pointers are the same for ZSTs, so it's fine to
226 // say that they're all at the beginning of the "allocation".
2270..this.len()
228 } else {
229 this.ptr.offset_from_unsigned(this.buf)..this.end.offset_from_unsigned(buf)
230 };
231let cap = this.cap;
232let alloc = ManuallyDrop::take(&mut this.alloc);
233VecDeque::from_contiguous_raw_parts_in(buf, initialized, cap, alloc)
234 }
235 }
236}
237238#[stable(feature = "vec_intoiter_as_ref", since = "1.46.0")]
239impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> {
240fn as_ref(&self) -> &[T] {
241self.as_slice()
242 }
243}
244245#[stable(feature = "rust1", since = "1.0.0")]
246unsafe impl<T: Send, A: Allocator + Send> Sendfor IntoIter<T, A> {}
247#[stable(feature = "rust1", since = "1.0.0")]
248unsafe impl<T: Sync, A: Allocator + Sync> Syncfor IntoIter<T, A> {}
249250#[stable(feature = "rust1", since = "1.0.0")]
251impl<T, A: Allocator> Iteratorfor IntoIter<T, A> {
252type Item = T;
253254#[inline]
255fn next(&mut self) -> Option<T> {
256let ptr = if T::IS_ZST {
257if self.ptr.as_ptr() == self.end as *mut T {
258return None;
259 }
260// `ptr` has to stay where it is to remain aligned, so we reduce the length by 1 by
261 // reducing the `end`.
262self.end = self.end.wrapping_byte_sub(1);
263self.ptr
264 } else {
265if self.ptr == {
#![allow(unused_unsafe)]
unsafe { *((&raw const self.end) as *const NonNull<T>) }
}non_null!(self.end, T) {
266return None;
267 }
268let old = self.ptr;
269// ignore-tidy-undocumented-unsafe
270self.ptr = unsafe { old.add(1) };
271old272 };
273// ignore-tidy-undocumented-unsafe
274Some(unsafe { ptr.read() })
275 }
276277#[inline]
278fn size_hint(&self) -> (usize, Option<usize>) {
279let exact = if T::IS_ZST {
280self.end.addr().wrapping_sub(self.ptr.as_ptr().addr())
281 } else {
282// ignore-tidy-undocumented-unsafe
283unsafe { {
#![allow(unused_unsafe)]
unsafe { *((&raw const self.end) as *const NonNull<T>) }
}non_null!(self.end, T).offset_from_unsigned(self.ptr) }
284 };
285 (exact, Some(exact))
286 }
287288#[inline]
289fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
290let step_size = self.len().min(n);
291let to_drop = self.ptr.as_ptr().cast_slice(step_size);
292if T::IS_ZST {
293// See `next` for why we sub `end` here.
294self.end = self.end.wrapping_byte_sub(step_size);
295 } else {
296// SAFETY: the min() above ensures that step_size is in bounds
297self.ptr = unsafe { self.ptr.add(step_size) };
298 }
299// SAFETY: the min() above ensures that step_size is in bounds
300unsafe {
301 ptr::drop_in_place(to_drop);
302 }
303NonZero::new(n - step_size).map_or(Ok(()), Err)
304 }
305306#[inline]
307fn count(self) -> usize {
308self.len()
309 }
310311#[inline]
312fn last(mut self) -> Option<T> {
313self.next_back()
314 }
315316#[inline]
317fn next_chunk<const N: usize>(&mut self) -> Result<[T; N], core::array::IntoIter<T, N>> {
318let mut raw_ary = [const { MaybeUninit::uninit() }; N];
319320let len = self.len();
321322if T::IS_ZST {
323if len < N {
324self.forget_remaining_elements();
325// SAFETY: ZSTs can be conjured ex nihilo, only the amount has to be correct
326return Err(unsafe { array::IntoIter::new_unchecked(raw_ary, 0..len) });
327 }
328329self.end = self.end.wrapping_byte_sub(N);
330// SAFETY: ditto
331return Ok(unsafe { raw_ary.transpose().assume_init() });
332 }
333334if len < N {
335// SAFETY: `len` indicates that this many elements are available and we
336 // just checked that it fits into the array.
337unsafe {
338 ptr::copy_nonoverlapping(self.ptr.as_ptr(), raw_ary.as_mut_ptr() as *mut T, len);
339self.forget_remaining_elements();
340return Err(array::IntoIter::new_unchecked(raw_ary, 0..len));
341 }
342 }
343344// SAFETY: `len` is larger than the array size. Copy a fixed amount here to fully initialize
345 // the array.
346unsafe {
347 ptr::copy_nonoverlapping(self.ptr.as_ptr(), raw_ary.as_mut_ptr() as *mut T, N);
348self.ptr = self.ptr.add(N);
349Ok(raw_ary.transpose().assume_init())
350 }
351 }
352353fn fold<B, F>(mut self, mut accum: B, mut f: F) -> B
354where
355F: FnMut(B, Self::Item) -> B,
356 {
357if T::IS_ZST {
358while self.ptr.as_ptr() != self.end.cast_mut() {
359// SAFETY: we just checked that `self.ptr` is in bounds.
360let tmp = unsafe { self.ptr.read() };
361// See `next` for why we subtract from `end` here.
362self.end = self.end.wrapping_byte_sub(1);
363 accum = f(accum, tmp);
364 }
365 } else {
366// SAFETY: `self.end` can only be null if `T` is a ZST.
367while self.ptr != {
#![allow(unused_unsafe)]
unsafe { *((&raw const self.end) as *const NonNull<T>) }
}non_null!(self.end, T) {
368// SAFETY: we just checked that `self.ptr` is in bounds.
369let tmp = unsafe { self.ptr.read() };
370// SAFETY: the maximum this can be is `self.end`.
371 // Increment `self.ptr` first to avoid double dropping in the event of a panic.
372self.ptr = unsafe { self.ptr.add(1) };
373 accum = f(accum, tmp);
374 }
375 }
376377// There are in fact no remaining elements to forget, but by doing this we can avoid
378 // potentially generating a needless loop to drop the elements that cannot exist at
379 // this point.
380self.forget_remaining_elements_and_dealloc();
381382accum383 }
384385fn try_fold<B, F, R>(&mut self, mut accum: B, mut f: F) -> R
386where
387Self: Sized,
388 F: FnMut(B, Self::Item) -> R,
389 R: core::ops::Try<Output = B>,
390 {
391if T::IS_ZST {
392while self.ptr.as_ptr() != self.end.cast_mut() {
393// SAFETY: we just checked that `self.ptr` is in bounds.
394let tmp = unsafe { self.ptr.read() };
395// See `next` for why we subtract from `end` here.
396self.end = self.end.wrapping_byte_sub(1);
397 accum = f(accum, tmp)?;
398 }
399 } else {
400// SAFETY: `self.end` can only be null if `T` is a ZST.
401while self.ptr != {
#![allow(unused_unsafe)]
unsafe { *((&raw const self.end) as *const NonNull<T>) }
}non_null!(self.end, T) {
402// SAFETY: we just checked that `self.ptr` is in bounds.
403let tmp = unsafe { self.ptr.read() };
404// SAFETY: the maximum this can be is `self.end`.
405 // Increment `self.ptr` first to avoid double dropping in the event of a panic.
406self.ptr = unsafe { self.ptr.add(1) };
407 accum = f(accum, tmp)?;
408 }
409 }
410 R::from_output(accum)
411 }
412413unsafe fn __iterator_get_unchecked(&mut self, i: usize) -> Self::Item
414where
415Self: TrustedRandomAccessNoCoerce,
416 {
417// SAFETY: the caller must guarantee that `i` is in bounds of the
418 // `Vec<T>`, so `i` cannot overflow an `isize`, and the `self.ptr.add(i)`
419 // is guaranteed to pointer to an element of the `Vec<T>` and
420 // thus guaranteed to be valid to dereference.
421 //
422 // Also note the implementation of `Self: TrustedRandomAccess` requires
423 // that `T: Copy` so reading elements from the buffer doesn't invalidate
424 // them for `Drop`.
425unsafe { self.ptr.add(i).read() }
426 }
427}
428429#[stable(feature = "rust1", since = "1.0.0")]
430impl<T, A: Allocator> DoubleEndedIteratorfor IntoIter<T, A> {
431#[inline]
432fn next_back(&mut self) -> Option<T> {
433if T::IS_ZST {
434if self.ptr.as_ptr() == self.end as *mut _ {
435return None;
436 }
437// See above for why 'ptr.offset' isn't used
438self.end = self.end.wrapping_byte_sub(1);
439// Note that even though this is next_back() we're reading from `self.ptr`, not
440 // `self.end`. We track our length using the byte offset from `self.ptr` to `self.end`,
441 // so the end pointer may not be suitably aligned for T.
442 // ignore-tidy-undocumented-unsafe
443Some(unsafe { ptr::read(self.ptr.as_ptr()) })
444 } else {
445if self.ptr == {
#![allow(unused_unsafe)]
unsafe { *((&raw const self.end) as *const NonNull<T>) }
}non_null!(self.end, T) {
446return None;
447 }
448// ignore-tidy-undocumented-unsafe
449unsafe {
450self.end = self.end.sub(1);
451Some(ptr::read(self.end))
452 }
453 }
454 }
455456#[inline]
457fn next_chunk_back<const N: usize>(&mut self) -> Result<[T; N], core::array::IntoIter<T, N>> {
458let mut raw_ary = [const { MaybeUninit::uninit() }; N];
459460let len = self.len();
461462if T::IS_ZST {
463if len < N {
464self.forget_remaining_elements();
465// SAFETY: ZSTs can be conjured ex nihilo, only the amount has to be correct
466return Err(unsafe { array::IntoIter::new_unchecked(raw_ary, N - len..N) });
467 }
468469self.end = self.end.wrapping_byte_sub(N);
470// SAFETY: ditto
471return Ok(unsafe { MaybeUninit::array_assume_init(raw_ary) });
472 }
473474if len < N {
475// SAFETY: `len` indicates that this many elements are available
476 // and we just checked that it fits into the array.
477unsafe {
478 ptr::copy_nonoverlapping(self.ptr.as_ptr(), raw_ary.as_mut_ptr() as *mut T, len);
479self.forget_remaining_elements();
480return Err(array::IntoIter::new_unchecked(raw_ary, 0..len));
481 }
482 }
483484// SAFETY: `len` is larger than the array size. Copy a fixed amount here to fully initialize
485 // the array.
486unsafe {
487 ptr::copy_nonoverlapping(
488self.ptr.add(len - N).as_ptr(),
489raw_ary.as_mut_ptr() as *mut T,
490N,
491 );
492self.end = self.end.sub(N);
493Ok(MaybeUninit::array_assume_init(raw_ary))
494 }
495 }
496497#[inline]
498fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
499let step_size = self.len().min(n);
500if T::IS_ZST {
501// SAFETY: same as for advance_by()
502self.end = self.end.wrapping_byte_sub(step_size);
503 } else {
504// SAFETY: same as for advance_by()
505self.end = unsafe { self.end.sub(step_size) };
506 }
507let to_drop = if T::IS_ZST {
508// ZST may cause unalignment
509ptr::NonNull::<T>::dangling().as_ptr().cast_slice(step_size)
510 } else {
511self.end.cast::<T>().cast_mut().cast_slice(step_size)
512 };
513// SAFETY: same as for advance_by()
514unsafe {
515 ptr::drop_in_place(to_drop);
516 }
517NonZero::new(n - step_size).map_or(Ok(()), Err)
518 }
519}
520521#[stable(feature = "rust1", since = "1.0.0")]
522impl<T, A: Allocator> ExactSizeIteratorfor IntoIter<T, A> {
523fn is_empty(&self) -> bool {
524if T::IS_ZST {
525self.ptr.as_ptr() == self.end as *mut _
526} else {
527self.ptr == {
#![allow(unused_unsafe)]
unsafe { *((&raw const self.end) as *const NonNull<T>) }
}non_null!(self.end, T)528 }
529 }
530}
531532#[stable(feature = "fused", since = "1.26.0")]
533impl<T, A: Allocator> FusedIteratorfor IntoIter<T, A> {}
534535#[doc(hidden)]
536#[unstable(issue = "none", feature = "trusted_fused")]
537unsafe impl<T, A: Allocator> TrustedFused for IntoIter<T, A> {}
538539#[unstable(feature = "trusted_len", issue = "37572")]
540unsafe impl<T, A: Allocator> TrustedLenfor IntoIter<T, A> {}
541542#[stable(feature = "default_iters", since = "1.70.0")]
543impl<T, A> Defaultfor IntoIter<T, A>
544where
545A: Allocator + Default,
546{
547/// Creates an empty `vec::IntoIter`.
548 ///
549 /// ```
550 /// # use std::vec;
551 /// let iter: vec::IntoIter<u8> = Default::default();
552 /// assert_eq!(iter.len(), 0);
553 /// assert_eq!(iter.as_slice(), &[]);
554 /// ```
555fn default() -> Self {
556super::Vec::new_in(Default::default()).into_iter()
557 }
558}
559560#[doc(hidden)]
561#[unstable(issue = "none", feature = "std_internals")]
562#[unsafe(rustc_allow_lifetime_dependent_specialization)]
563trait NonDrop {}
564565// T: Copy as approximation for !Drop since get_unchecked does not advance self.ptr
566// and thus we can't implement drop-handling
567#[unstable(issue = "none", feature = "std_internals")]
568impl<T: Copy> NonDropfor T {}
569570#[doc(hidden)]
571#[unstable(issue = "none", feature = "std_internals")]
572// TrustedRandomAccess (without NoCoerce) must not be implemented because
573// subtypes/supertypes of `T` might not be `NonDrop`
574unsafe impl<T, A: Allocator> TrustedRandomAccessNoCoerce for IntoIter<T, A>
575where
576T: NonDrop,
577{
578const MAY_HAVE_SIDE_EFFECT: bool = false;
579}
580581#[cfg(not(no_global_oom_handling))]
582#[stable(feature = "vec_into_iter_clone", since = "1.8.0")]
583impl<T: Clone, A: Allocator + Clone> Clonefor IntoIter<T, A> {
584fn clone(&self) -> Self {
585self.as_slice().to_vec_in(self.alloc.deref().clone()).into_iter()
586 }
587}
588589#[stable(feature = "rust1", since = "1.0.0")]
590unsafe impl<#[may_dangle] T, A: Allocator> Dropfor IntoIter<T, A> {
591fn drop(&mut self) {
592// ignore-tidy-undocumented-unsafe
593let mut guard = DropGuard::new(self, |this| unsafe { this.dealloc_only() });
594// destroy the remaining elements
595 // ignore-tidy-undocumented-unsafe
596unsafe { ptr::drop_in_place(guard.as_raw_mut_slice()) }
597// now `guard` will be dropped and do the rest
598}
599}
600601// In addition to the SAFETY invariants of the following three unsafe traits
602// also refer to the vec::in_place_collect module documentation to get an overview
603#[unstable(issue = "none", feature = "inplace_iteration")]
604#[doc(hidden)]
605unsafe impl<T, A: Allocator> InPlaceIterable for IntoIter<T, A> {
606const EXPAND_BY: Option<NonZero<usize>> = NonZero::new(1);
607const MERGE_BY: Option<NonZero<usize>> = NonZero::new(1);
608}
609610#[unstable(issue = "none", feature = "inplace_iteration")]
611#[doc(hidden)]
612unsafe impl<T, A: Allocator> SourceIter for IntoIter<T, A> {
613type Source = Self;
614615#[inline]
616unsafe fn as_inner(&mut self) -> &mut Self::Source {
617self618 }
619}
620621#[cfg(not(no_global_oom_handling))]
622unsafe impl<T> AsVecIntoIterfor IntoIter<T> {
623type Item = T;
624625fn as_into_iter(&mut self) -> &mut IntoIter<Self::Item> {
626self627 }
628}