pull/265/head
Sunjay Varma 5 years ago
parent fb7582bd7a
commit a05b564486

@ -39,11 +39,7 @@ where
.collect()
.await;
if found_error {
None
} else {
Some(out)
}
if found_error { None } else { Some(out) }
})
}
}

@ -1,6 +1,6 @@
use std::pin::Pin;
use crate::stream::{FromStream, IntoStream, Extend};
use crate::stream::{Extend, FromStream, IntoStream};
impl<T> FromStream<T> for Vec<T> {
#[inline]

Loading…
Cancel
Save