2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-28 23:29:41 +00:00

remove Debug derive from NthFuture

This commit is contained in:
Fedor Sakharov 2019-09-09 12:42:52 +03:00
parent 45cd3b0894
commit 43b7523c69
No known key found for this signature in database
GPG key ID: 93D436E666BF0FEE

View file

@ -1,7 +1,7 @@
use std::pin::Pin; use std::pin::Pin;
use std::task::{Context, Poll}; use std::task::{Context, Poll};
#[derive(Debug)] #[allow(missing_debug_implementations)]
pub struct NthFuture<'a, S> { pub struct NthFuture<'a, S> {
stream: &'a mut S, stream: &'a mut S,
n: usize, n: usize,