Skip to content

Commit 3d5562d

Browse files
committed
Merge branch 'assemblaj-partial_cmp' of https://github.com/assemblaj/async-std into assemblaj-partial_cmp
2 parents 8576dbe + bab0783 commit 3d5562d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/stream/stream/partial_cmp.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ use crate::task::{Context, Poll};
99

1010
// Lexicographically compares the elements of this `Stream` with those
1111
// of another.
12-
#[derive(Debug)]
12+
#[doc(hidden)]
13+
#[allow(missing_debug_implementations)]
1314
pub struct PartialCmpFuture<L: Stream, R: Stream> {
1415
l: Fuse<L>,
1516
r: Fuse<R>,
@@ -88,4 +89,4 @@ where
8889
}
8990
}
9091
}
91-
}
92+
}

0 commit comments

Comments
 (0)