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::task::{Context, Poll};
#[derive(Debug)]
#[allow(missing_debug_implementations)]
pub struct NthFuture<'a, S> {
stream: &'a mut S,
n: usize,