[][src]Struct alloc_wg::vec::IntoIter

pub struct IntoIter<T, A: AllocRef = Global> { /* fields omitted */ }

An iterator that moves out of a vector.

This struct is created by the into_iter method on Vec (provided by the IntoIterator trait).

Implementations

impl<T, A: AllocRef> IntoIter<T, A>[src]

#[must_use]pub fn as_slice(&self) -> &[T][src]

Returns the remaining items of this iterator as a slice.

Examples

let vec = vec!['a', 'b', 'c'];
let mut into_iter = vec.into_iter();
assert_eq!(into_iter.as_slice(), &['a', 'b', 'c']);
let _ = into_iter.next().unwrap();
assert_eq!(into_iter.as_slice(), &['b', 'c']);

#[must_use]pub fn as_mut_slice(&mut self) -> &mut [T][src]

Returns the remaining items of this iterator as a mutable slice.

Examples

let vec = vec!['a', 'b', 'c'];
let mut into_iter = vec.into_iter();
assert_eq!(into_iter.as_slice(), &['a', 'b', 'c']);
into_iter.as_mut_slice()[2] = 'z';
assert_eq!(into_iter.next().unwrap(), 'a');
assert_eq!(into_iter.next().unwrap(), 'b');
assert_eq!(into_iter.next().unwrap(), 'z');

Trait Implementations

impl<T: Clone> Clone for IntoIter<T>[src]

impl<T: Debug, A: AllocRef> Debug for IntoIter<T, A>[src]

impl<T, A: AllocRef> DoubleEndedIterator for IntoIter<T, A>[src]

impl<T, A: AllocRef> Drop for IntoIter<T, A>[src]

impl<T, A: AllocRef> ExactSizeIterator for IntoIter<T, A>[src]

impl<T, A: AllocRef> FusedIterator for IntoIter<T, A>[src]

impl<T, A: AllocRef> Iterator for IntoIter<T, A>[src]

type Item = T

The type of the elements being iterated over.

impl<T: Send, A: Send + AllocRef> Send for IntoIter<T, A>[src]

impl<T: Sync, A: Send + AllocRef> Sync for IntoIter<T, A>[src]

Auto Trait Implementations

impl<T, A> RefUnwindSafe for IntoIter<T, A> where
    A: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, A> Unpin for IntoIter<T, A> where
    A: Unpin,
    T: Unpin

impl<T, A> UnwindSafe for IntoIter<T, A> where
    A: UnwindSafe,
    T: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> IteratorExt for T where
    T: Iterator
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.