1.0.0[][src]Struct alloc_wg::slice::Iter

pub struct Iter<'a, T> where
    T: 'a, 
{ /* fields omitted */ }

Immutable slice iterator

This struct is created by the iter method on slices.

Examples

Basic usage:

// First, we declare a type which has `iter` method to get the `Iter` struct (&[usize here]):
let slice = &[1, 2, 3];

// Then, we iterate over it:
for element in slice.iter() {
    println!("{}", element);
}

Implementations

impl<'a, T> Iter<'a, T>[src]

pub fn as_slice(&self) -> &'a [T]1.4.0[src]

Views the underlying data as a subslice of the original data.

This has the same lifetime as the original slice, and so the iterator can continue to be used while this exists.

Examples

Basic usage:

// First, we declare a type which has the `iter` method to get the `Iter`
// struct (&[usize here]):
let slice = &[1, 2, 3];

// Then, we get the iterator:
let mut iter = slice.iter();
// So if we print what `as_slice` method returns here, we have "[1, 2, 3]":
println!("{:?}", iter.as_slice());

// Next, we move to the second element of the slice:
iter.next();
// Now `as_slice` returns "[2, 3]":
println!("{:?}", iter.as_slice());

Trait Implementations

impl<'_, T> AsRef<[T]> for Iter<'_, T>1.13.0[src]

impl<'_, T> Clone for Iter<'_, T>[src]

impl<'_, T> Debug for Iter<'_, T> where
    T: Debug
1.9.0[src]

impl<'a, T> DoubleEndedIterator for Iter<'a, T>[src]

impl<'_, T> ExactSizeIterator for Iter<'_, T>[src]

impl<'_, T> FusedIterator for Iter<'_, T>1.26.0[src]

impl<'a, T> Iterator for Iter<'a, T>[src]

type Item = &'a T

The type of the elements being iterated over.

impl<'_, T> Send for Iter<'_, T> where
    T: Sync
[src]

impl<'_, T> Sync for Iter<'_, T> where
    T: Sync
[src]

impl<'_, T> TrustedLen for Iter<'_, T>[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for Iter<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Unpin for Iter<'a, T>

impl<'a, T> UnwindSafe for Iter<'a, T> where
    T: RefUnwindSafe

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.