Struct fixedvec::Iter1.0.0 [] [src]

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);
}

Methods

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

View 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<'a, T> AsRef<[T]> for Iter<'a, T>
1.13.0
[src]

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

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

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

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

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

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

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

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

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

Formats the value using the given formatter.