D | into_iter.rs | 35 pub struct IntoIter< struct 52 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<T, A> { implementation 58 impl<T, A: Allocator> IntoIter<T, A> { implementation 174 impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> { implementation 181 unsafe impl<T: Send, A: Allocator + Send> Send for IntoIter<T, A> {} implementation 183 unsafe impl<T: Sync, A: Allocator + Sync> Sync for IntoIter<T, A> {} implementation 186 impl<T, A: Allocator> Iterator for IntoIter<T, A> { implementation 242 fn next_chunk<const N: usize>(&mut self) -> Result<[T; N], core::array::IntoIter<T, N>> { in next_chunk() 251 return Err(unsafe { array::IntoIter::new_unchecked(raw_ary, 0..len) }); 265 return Err(array::IntoIter::new_unchecked(raw_ary, 0..len)); [all …]
|