Skip to content

Commit 97094b2

Browse files
committed
remove Sized constraint
1 parent a9a7bdc commit 97094b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stream/stream/count.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl<S> CountFuture<S> {
2222

2323
impl<S> Future for CountFuture<S>
2424
where
25-
S: Sized + Stream,
25+
S: Stream,
2626
{
2727
type Output = usize;
2828

0 commit comments

Comments
 (0)