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