Skip to content

Commit bab0783

Browse files
assemblajmontekki
andauthored
Update src/stream/stream/partial_cmp.rs
Hides docs as standard in our codebase for all Future types Co-Authored-By: Fedor Sakharov <[email protected]>
1 parent 81f475b commit bab0783

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>,
@@ -90,4 +91,4 @@ where
9091
cx.waker().wake_by_ref();
9192
Poll::Pending
9293
}
93-
}
94+
}

0 commit comments

Comments
 (0)