Struct collections::binary_heap::IntoIter 1.0.0
[−]
[src]
pub struct IntoIter<T> { /* fields omitted */ }
An owning iterator over the elements of a BinaryHeap
.
This struct
is created by the into_iter
method on BinaryHeap
(provided by the IntoIterator
trait). See its documentation for more.
Trait Implementations
impl<T> DoubleEndedIterator for IntoIter<T>
[src]
impl<T> Debug for IntoIter<T> where
T: Debug,
1.17.0[src]
T: Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl<T> Iterator for IntoIter<T>
[src]
type Item = T
fn next(&mut self) -> Option<T>
[src]
fn size_hint(&self) -> (usize, Option<usize>)
[src]
impl<T> FusedIterator for IntoIter<T>
[src]
impl<T> Clone for IntoIter<T> where
T: Clone,
[src]
T: Clone,