We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Stream
VecDeque
1 parent 3144e21 commit d502453Copy full SHA for d502453
src/stream/stream/mod.rs
@@ -2067,14 +2067,6 @@ extension_trait! {
2067
}
2068
2069
2070
- impl<T: Unpin> Stream for std::collections::VecDeque<T> {
2071
- type Item = T;
2072
-
2073
- fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
2074
- unreachable!("this impl only appears in the rendered docs")
2075
- }
2076
2077
2078
impl<S: Stream> Stream for std::panic::AssertUnwindSafe<S> {
2079
type Item = S::Item;
2080
0 commit comments