From 43b7523c6971005362068a75cfe9161ec77df037 Mon Sep 17 00:00:00 2001 From: Fedor Sakharov Date: Mon, 9 Sep 2019 12:42:52 +0300 Subject: [PATCH] remove Debug derive from NthFuture --- src/stream/stream/nth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream/stream/nth.rs b/src/stream/stream/nth.rs index 346fa1a..169ded5 100644 --- a/src/stream/stream/nth.rs +++ b/src/stream/stream/nth.rs @@ -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,