Struct collections::linked_list::Iter 1.0.0
[−]
[src]
pub struct Iter<'a, T> where
T: 'a, { /* fields omitted */ }
An iterator over the elements of a LinkedList
.
This struct
is created by the iter
method on LinkedList
. See its
documentation for more.
Trait Implementations
impl<'a, T> DoubleEndedIterator for Iter<'a, T>
[src]
impl<'a, T> Send for Iter<'a, T> where
T: Sync,
[src]
T: Sync,
impl<'a, T> Debug for Iter<'a, T> where
T: 'a + Debug,
1.17.0[src]
T: 'a + Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl<'a, T> Iterator for Iter<'a, T>
[src]
type Item = &'a T
fn next(&mut self) -> Option<&'a T>
[src]
fn size_hint(&self) -> (usize, Option<usize>)
[src]
impl<'a, T> Sync for Iter<'a, T> where
T: Sync,
[src]
T: Sync,