2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 18:59:55 +00:00

Update src/stream/stream/enumerate.rs

Co-Authored-By: Stjepan Glavina <stjepang@gmail.com>
This commit is contained in:
Fedor Sakharov 2019-09-17 12:31:24 +03:00 committed by GitHub
parent 3dc33f54b4
commit 9487b73f12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ impl<S> Enumerate<S> {
impl<S> futures_core::stream::Stream for Enumerate<S> impl<S> futures_core::stream::Stream for Enumerate<S>
where where
S: Stream + Unpin + Sized, S: Stream,
{ {
type Item = (usize, S::Item); type Item = (usize, S::Item);