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

pub struct Iter<'a, T> where T: 'a {
    // some 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>

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

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> Debug for Iter<'a, T> where T: 'a + Debug
1.9.0

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>

Formats the value using the given formatter.

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

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

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

type Item = &'a T

fn next(&mut self) -> Option<&'a T>

fn size_hint(&self) -> (usize, Option<usize>)

fn count(self) -> usize

fn nth(&mut self, n: usize) -> Option<&'a T>

fn last(self) -> Option<&'a T>

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

fn next_back(&mut self) -> Option<&'a T>

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

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

fn clone(&self) -> Iter<'a, T>