forked from mirror/async-std
Disable docs and Debug for unexposed structs
This commit is contained in:
parent
94893d2924
commit
abd360893c
4 changed files with 8 additions and 2 deletions
|
@ -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;
|
|||
|
||||
use crate::stream::DoubleEndedStream;
|
||||
|
||||
#[doc(hidden)]
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct RFindFuture<'a, S, P> {
|
||||
stream: &'a mut S,
|
||||
p: P,
|
||||
|
|
|
@ -7,6 +7,8 @@ use pin_project_lite::pin_project;
|
|||
use crate::stream::DoubleEndedStream;
|
||||
|
||||
pin_project! {
|
||||
#[doc(hidden)]
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct RFoldFuture<S, F, B> {
|
||||
#[pin]
|
||||
stream: S,
|
||||
|
|
Loading…
Reference in a new issue