2
0
Fork 1
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:
Johannes Weissmann 2019-10-20 22:03:51 +02:00
parent a9a7bdc290
commit 97094b2a1c

View file

@ -22,7 +22,7 @@ impl<S> CountFuture<S> {
impl<S> Future for CountFuture<S>
where
S: Sized + Stream,
S: Stream,
{
type Output = usize;