FromStream for Vec<T> in terms of Extend

pull/265/head
Sunjay Varma 5 years ago
parent 76b10c4784
commit ab7129cd45

@ -1,7 +1,6 @@
use std::pin::Pin;
use crate::prelude::*;
use crate::stream::{FromStream, IntoStream};
use crate::stream::{FromStream, IntoStream, Extend};
impl<T> FromStream<T> for Vec<T> {
#[inline]
@ -17,9 +16,7 @@ impl<T> FromStream<T> for Vec<T> {
pin_utils::pin_mut!(stream);
let mut out = vec![];
while let Some(item) = stream.next().await {
out.push(item);
}
out.stream_extend(stream).await;
out
}))
}

Loading…
Cancel
Save