usesuper::assert_stream; use core::pin::Pin; use futures_core::stream::Stream; use futures_core::task::{Context, Poll};
/// Stream for the [`iter`] function. #[derive(Debug, Clone)] #[must_use = "streams do nothing unless polled"] pubstruct Iter<I> {
iter: I,
}
impl<I> Unpin for Iter<I> {}
/// Converts an `Iterator` into a `Stream` which is always ready /// to yield the next value. /// /// Iterators in Rust don't express the ability to block, so this adapter /// simply always calls `iter.next()` and returns that. /// /// ``` /// # futures::executor::block_on(async { /// use futures::stream::{self, StreamExt}; /// /// let stream = stream::iter(vec![17, 19]); /// assert_eq!(vec![17, 19], stream.collect::<Vec<i32>>().await); /// # }); /// ``` pubfn iter<I>(i: I) -> Iter<I::IntoIter> where
I: IntoIterator,
{
assert_stream::<I::Item, _>(Iter { iter: i.into_iter() })
}
impl<I> Stream for Iter<I> where
I: Iterator,
{ type Item = I::Item;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.