Trait IntoAsyncIterator

pub trait IntoAsyncIterator

Converts something into an async iterator

Associated Types

type Item;

The type of the item yielded by the iterator

type IntoAsyncIter: AsyncIterator<Item = Self::Item>;

The type of the resulting iterator

Required Methods

fn into_async_iter(self) -> Self::IntoAsyncIter

Converts self into an async iterator

Implementors