Trait async_iterator::prelude::IntoIterator
source · pub trait IntoIterator {
type Item;
type IntoIter: Iterator<Item = Self::Item>;
// Required method
async fn into_iter(self) -> Self::IntoIter;
}Expand description
Conversion into an Iterator.