From 930dd7cab185e238c42509c2a1c78156d8789025 Mon Sep 17 00:00:00 2001 From: Gabriel Majeri Date: Wed, 6 Nov 2019 09:39:41 +0200 Subject: [PATCH] Remove doc `Stream` impl for `VecDeque` --- src/stream/stream/mod.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/stream/stream/mod.rs b/src/stream/stream/mod.rs index b77019da6..c7e794a76 100644 --- a/src/stream/stream/mod.rs +++ b/src/stream/stream/mod.rs @@ -2067,14 +2067,6 @@ extension_trait! { } } - impl Stream for std::collections::VecDeque { - type Item = T; - - fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { - unreachable!("this impl only appears in the rendered docs") - } - } - impl Stream for std::panic::AssertUnwindSafe { type Item = S::Item;