Trait IntoAsyncIterator

Source
pub trait IntoAsyncIterator {
    type Item;
    type AsyncIter: AsyncIterator<Item = Self::Item>;

    // Required method
    fn into_aiter(self) -> Self::AsyncIter;
}

Required Associated Types§

Required Methods§

Source

fn into_aiter(self) -> Self::AsyncIter

Implementors§