1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use crate::stream::{FromStream, IntoStream, Stream};

use std::pin::Pin;

impl<T: Send> FromStream<T> for Vec<T> {
    #[inline]
    fn from_stream<'a, S: IntoStream<Item = T>>(
        stream: S,
    ) -> Pin<Box<dyn core::future::Future<Output = Self> + Send + 'a>>
    where
        <S as IntoStream>::IntoStream: Send + 'a,
    {
        let stream = stream.into_stream();

        Pin::from(Box::new(async move {
            pin_utils::pin_mut!(stream);

            let mut out = vec![];
            while let Some(item) = stream.next().await {
                out.push(item);
            }
            out
        }))
    }
}