mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-19 20:13:51 +00:00
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;
|
use crate::stream::DoubleEndedStream;
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[allow(missing_debug_implementations)]
|
||||||
pub struct NthBackFuture<'a, S> {
|
pub struct NthBackFuture<'a, S> {
|
||||||
stream: &'a mut S,
|
stream: &'a mut S,
|
||||||
n: usize,
|
n: usize,
|
||||||
|
|
|
@ -4,6 +4,8 @@ use std::pin::Pin;
|
||||||
|
|
||||||
use crate::stream::DoubleEndedStream;
|
use crate::stream::DoubleEndedStream;
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[allow(missing_debug_implementations)]
|
||||||
pub struct RFindFuture<'a, S, P> {
|
pub struct RFindFuture<'a, S, P> {
|
||||||
stream: &'a mut S,
|
stream: &'a mut S,
|
||||||
p: P,
|
p: P,
|
||||||
|
|
|
@ -7,6 +7,8 @@ use pin_project_lite::pin_project;
|
||||||
use crate::stream::DoubleEndedStream;
|
use crate::stream::DoubleEndedStream;
|
||||||
|
|
||||||
pin_project! {
|
pin_project! {
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[allow(missing_debug_implementations)]
|
||||||
pub struct RFoldFuture<S, F, B> {
|
pub struct RFoldFuture<S, F, B> {
|
||||||
#[pin]
|
#[pin]
|
||||||
stream: S,
|
stream: S,
|
||||||
|
|
|
@ -7,8 +7,8 @@ use pin_project_lite::pin_project;
|
||||||
use crate::stream::DoubleEndedStream;
|
use crate::stream::DoubleEndedStream;
|
||||||
|
|
||||||
pin_project! {
|
pin_project! {
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
#[allow(missing_debug_implementations)]
|
#[allow(missing_debug_implementations)]
|
||||||
pub struct TryRFoldFuture<S, F, T> {
|
pub struct TryRFoldFuture<S, F, T> {
|
||||||
#[pin]
|
#[pin]
|
||||||
stream: S,
|
stream: S,
|
||||||
|
|
Loading…
Reference in a new issue