Struct std::collections::linked_list::IterStable [-] [+] [src]

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

An iterator over references to the items of a LinkedList.

Trait Implementations

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

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

fn clone_from(&mut self, &Iter<'a, T>)

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

type Item = &'a A

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

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

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

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

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

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

fn len(&self) -> usize