Struct ark_ff::vec::IntoIter1.0.0[][src]

pub struct IntoIter<T, A = Global> where
    A: Allocator
{ /* 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).

Example

let v = vec![0, 1, 2];
let iter: std::vec::IntoIter<_> = v.into_iter();

Implementations

impl<T, A> IntoIter<T, A> where
    A: Allocator
[src]

pub fn as_slice(&self) -> &[T]1.15.0[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']);

pub fn as_mut_slice(&mut self) -> &mut [T]1.15.0[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');

pub fn allocator(&self) -> &A[src]

🔬 This is a nightly-only experimental API. (allocator_api)

Returns a reference to the underlying allocator.

Trait Implementations

impl<T, A> AsRef<[T]> for IntoIter<T, A> where
    A: Allocator
1.46.0[src]

impl<T, A> Clone for IntoIter<T, A> where
    T: Clone,
    A: Allocator + Clone
1.8.0[src]

impl<T, A> Debug for IntoIter<T, A> where
    T: Debug,
    A: Allocator
1.13.0[src]

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

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

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

impl<T, A> FusedIterator for IntoIter<T, A> where
    A: Allocator
1.26.0[src]

impl<T, A> InPlaceIterable for IntoIter<T, A> where
    A: Allocator
[src]

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

type Item = T

The type of the elements being iterated over.

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

impl<T, A> SourceIter for IntoIter<T, A> where
    A: Allocator
[src]

type Source = IntoIter<T, A>

🔬 This is a nightly-only experimental API. (inplace_iteration)

A source stage in an iterator pipeline.

impl<T, A> Sync for IntoIter<T, A> where
    T: Sync,
    A: Allocator
[src]

impl<T, A> TrustedLen for IntoIter<T, A> where
    A: Allocator
[src]

Auto Trait Implementations

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

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<I> IteratorRandom for I where
    I: 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,