@ -4,6 +4,8 @@ use std::task::{Context, Poll};
use crate::stream::DoubleEndedStream;
#[doc(hidden)]
#[allow(missing_debug_implementations)]
pub struct NthBackFuture<'a, S> {
stream: &'a mut S,
n: usize,
@ -4,6 +4,8 @@ use std::pin::Pin;
pub struct RFindFuture<'a, S, P> {
p: P,
@ -7,6 +7,8 @@ use pin_project_lite::pin_project;
pin_project! {
pub struct RFoldFuture<S, F, B> {
#[pin]
stream: S,
@ -7,8 +7,8 @@ use pin_project_lite::pin_project;
pub struct TryRFoldFuture<S, F, T> {