Skip to content

Commit 53983b0

Browse files
ebkalderoncramertj
authored andcommitted
Remove unused derive(Debug) on FinalState enum
1 parent f440dd6 commit 53983b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

futures-util/src/try_future/try_join_all.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use std::mem;
88
use std::pin::Pin;
99
use std::prelude::v1::*;
1010
use std::task::Poll;
11+
1112
use super::TryFuture;
1213

1314
#[derive(Debug)]
@@ -52,7 +53,6 @@ fn iter_pin_mut<T>(slice: Pin<&mut [T]>) -> impl Iterator<Item = Pin<&mut T>> {
5253
.map(|t| unsafe { Pin::new_unchecked(t) })
5354
}
5455

55-
#[derive(Debug)]
5656
enum FinalState<E = ()> {
5757
Pending,
5858
AllDone,

0 commit comments

Comments
 (0)