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::IntoAsyncIterConverts
selfinto an async iterator
Implementors
impl<I> IntoAsyncIterator for AssertUnwindSafe<T> where I: AsyncIterator,impl<I> IntoAsyncIterator for FromIter<I> where I: AsyncIterator,impl<I> IntoAsyncIterator for Pin<Ptr> where I: AsyncIterator,impl<I: AsyncIterator> IntoAsyncIterator for I