Add Stream alias for AsyncIterator

This commit is contained in:
Michael Goulet 2022-03-15 20:59:13 -07:00
parent 2184c7c568
commit 8a75d55514

View file

@ -12,6 +12,7 @@
/// [impl]: index.html#implementing-async-iterator
#[unstable(feature = "async_iterator", issue = "79024")]
#[must_use = "async iterators do nothing unless polled"]
#[doc(alias = "Stream")]
pub trait AsyncIterator {
/// The type of items yielded by the async iterator.
type Item;