Struct IntoIter
1.6.0 · Source pub struct IntoIter<A> { }
Expand description
An iterator over the value in Some variant of an Option.
The iterator yields one value if the Option is a Some, otherwise none.
This struct is created by the Option::into_iter function.
The type of the elements being iterated over.
Advances the iterator and returns the next value.
Read more
Returns the bounds on the remaining length of the iterator.
Read more
Takes a closure and creates an iterator which calls that closure on each
element.
Read more
Returns the argument unchanged.
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
The type of the elements being iterated over.
Which kind of iterator are we turning this into?
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.