graph_http/traits/
async_iterator.rs

1use async_trait::async_trait;
2
3#[async_trait]
4pub trait AsyncIterator {
5    type Item;
6
7    async fn next(&mut self) -> Option<Self::Item>;
8}