Struct collections::vec_deque::IterMut 1.0.0
[−]
[src]
pub struct IterMut<'a, T> where
T: 'a, { /* fields omitted */ }
A mutable iterator over the elements of a VecDeque
.
This struct
is created by the iter_mut
method on VecDeque
. See its
documentation for more.
Trait Implementations
impl<'a, T> DoubleEndedIterator for IterMut<'a, T>
[src]
impl<'a, T> Debug for IterMut<'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 IterMut<'a, T>
[src]
type Item = &'a mut T
fn next(&mut self) -> Option<&'a mut T>
[src]
fn size_hint(&self) -> (usize, Option<usize>)
[src]
fn fold<Acc, F>(self, accum: Acc, f: F) -> Acc where
F: FnMut(Acc, <IterMut<'a, T> as Iterator>::Item) -> Acc,
[src]
F: FnMut(Acc, <IterMut<'a, T> as Iterator>::Item) -> Acc,