mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-06 08:26:42 +00:00
remove Stream trait bound
This commit is contained in:
parent
97094b2a1c
commit
6608d39c59
1 changed files with 1 additions and 1 deletions
|
@ -1416,7 +1416,7 @@ extension_trait! {
|
||||||
"#]
|
"#]
|
||||||
fn count(self) -> impl Future<Output = Ordering> [CountFuture<Self>]
|
fn count(self) -> impl Future<Output = Ordering> [CountFuture<Self>]
|
||||||
where
|
where
|
||||||
Self: Sized + Stream,
|
Self: Sized,
|
||||||
{
|
{
|
||||||
CountFuture::new(self)
|
CountFuture::new(self)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue