Trait async_iterator::IntoIterator
source · [−]pub trait IntoIterator {
type Item;
type IntoIter: Iterator<Item = Self::Item>;
fn into_iter(self) -> impl Future<Output = Self::IntoIter>;
}
Expand description
Conversion into an Iterator
.