Struct IntoIter
pub struct IntoIter<T: Send> { /* private fields */ }
Parallel iterator over a double-ended queue
Trait Implementations
impl<T: Clone + Send> Clone for IntoIter<T>
fn clone(&self) -> IntoIter<T>
impl<T: Debug + Send> Debug for IntoIter<T>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<T: Send> IndexedParallelIterator for IntoIter<T>
fn drive<C>(self, consumer: C) -> C::Result where C: Consumer<Self::Item>,fn len(&self) -> usizefn with_producer<CB>(self, callback: CB) -> CB::Output where CB: ProducerCallback<Self::Item>,
impl<T: Send> ParallelIterator for IntoIter<T>
type Item = T;fn drive_unindexed<C>(self, consumer: C) -> C::Result where C: UnindexedConsumer<Self::Item>,fn opt_len(&self) -> Option<usize>
Auto Trait Implementations
impl<T> Freeze for IntoIter<T>
where
IntoIter<T>: Freeze,
impl<T> RefUnwindSafe for IntoIter<T>
where
IntoIter<T>: RefUnwindSafe,
impl<T> Send for IntoIter<T>
where
IntoIter<T>: Send,
impl<T> Sync for IntoIter<T>
where
IntoIter<T>: Sync,
impl<T> Unpin for IntoIter<T>
where
IntoIter<T>: Unpin,
impl<T> UnsafeUnpin for IntoIter<T>
where
IntoIter<T>: UnsafeUnpin,
impl<T> UnwindSafe for IntoIter<T>
where
IntoIter<T>: UnwindSafe,
Blanket Implementations
impl<T> Any for IntoIter<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for IntoIter<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for IntoIter<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for IntoIter<T>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for IntoIter<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> IntoEither for IntoIter<T>
impl<T> IntoParallelIterator for IntoIter<T>
where
T: ParallelIterator,
type Iter = T;type Item = <T as ParallelIterator>::Item;fn into_par_iter(self) -> T
impl<T> Pointable for IntoIter<T>
const ALIGN: usize = _;type Init = T;unsafe fn init(init: <T as Pointable>::Init) -> usizeunsafe fn deref<'a>(ptr: usize) -> &'a Tunsafe fn deref_mut<'a>(ptr: usize) -> &'a mut Tunsafe fn drop(ptr: usize)
impl<T> ToOwned for IntoIter<T>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for IntoIter<T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for IntoIter<T>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for IntoIter<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>