//! Composable async iteration.
/// A trait for dealing with async iterators.
pubtraitAsyncIterator{/// The type of the elements being iterated over.
typeItem;/// Advances the iterator and returns the next value.
async fnnext(&mutself)->Option<Self::Item>;}