remove Stream trait bound

This commit is contained in:
Johannes Weissmann 2019-10-26 21:58:34 +02:00
parent 97094b2a1c
commit 6608d39c59

View file

@ -1416,7 +1416,7 @@ extension_trait! {
"#]
fn count(self) -> impl Future<Output = Ordering> [CountFuture<Self>]
where
Self: Sized + Stream,
Self: Sized,
{
CountFuture::new(self)
}