mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-31 17:55:35 +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>
|
||||
where
|
||||
S: Sized + Stream,
|
||||
S: Stream,
|
||||
{
|
||||
type Output = usize;
|
||||
|
||||
|
|
Loading…
Reference in a new issue