Struct collections::vec::IntoIterStable
[-]
[+]
[src]
pub struct IntoIter<T> { // some fields omitted }
An iterator that moves out of a vector.
Methods
impl<T> IntoIter<T>
fn into_inner(self) -> Vec<T>
Drops all items that have not yet been moved and returns the empty vector.
fn unwrap(self) -> Vec<T>
Deprecated, use .into_inner() instead