Skip to content

Commit 43b7523

Browse files
committed
remove Debug derive from NthFuture
1 parent 45cd3b0 commit 43b7523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stream/stream/nth.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::pin::Pin;
22
use std::task::{Context, Poll};
33

4-
#[derive(Debug)]
4+
#[allow(missing_debug_implementations)]
55
pub struct NthFuture<'a, S> {
66
stream: &'a mut S,
77
n: usize,

0 commit comments

Comments
 (0)