mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-26 02:06:48 +00:00
remove Sized constraint
This commit is contained in:
parent
a9a7bdc290
commit
97094b2a1c
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ impl<S> CountFuture<S> {
|
||||||
|
|
||||||
impl<S> Future for CountFuture<S>
|
impl<S> Future for CountFuture<S>
|
||||||
where
|
where
|
||||||
S: Sized + Stream,
|
S: Stream,
|
||||||
{
|
{
|
||||||
type Output = usize;
|
type Output = usize;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue