forked from mirror/async-std
remove Debug derive from NthFuture
This commit is contained in:
parent
45cd3b0894
commit
43b7523c69
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
use std::pin::Pin;
|
||||
use std::task::{Context, Poll};
|
||||
|
||||
#[derive(Debug)]
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct NthFuture<'a, S> {
|
||||
stream: &'a mut S,
|
||||
n: usize,
|
||||
|
|
Loading…
Reference in a new issue