Fix stream_extend compilation failures

staging
Stjepan Glavina 5 years ago
parent a1bc097ffd
commit 293d992de1

@ -1,7 +1,7 @@
use std::pin::Pin;
use crate::future::Future;
use crate::stream::{IntoStream, Stream};
use crate::prelude::*;
use crate::stream::IntoStream;
/// Extend a collection with the contents of a stream.
///

@ -1,7 +1,7 @@
use std::pin::Pin;
use crate::future::Future;
use crate::stream::{Extend, IntoStream, Stream};
use crate::prelude::*;
use crate::stream::{Extend, IntoStream};
impl<T> Extend<T> for Vec<T> {
fn stream_extend<'a, S: IntoStream<Item = T> + 'a>(

Loading…
Cancel
Save