Skip to content

Commit 55144d2

Browse files
committed
futures-util: Allow missing_debug_implementations on WakerToHandle
Fixes this error on ToT: ``` error: type does not implement `Debug`; consider adding `#[derive(Debug)]` or a manual implementation --> futures-util/src/compat/compat01as03.rs:325:1 | 325 | struct WakerToHandle<'a>(&'a task03::Waker); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D missing-debug-implementations` implied by `-D warnings` ``` Tested: - `cargo fmt`. - `cargo doc`. - `cargo test`.
1 parent 5ac72c7 commit 55144d2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

futures-util/src/compat/compat01as03.rs

+1
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ where
321321

322322
struct NotifyWaker(task03::Waker);
323323

324+
#[allow(missing_debug_implementations)]
324325
#[derive(Clone)]
325326
struct WakerToHandle<'a>(&'a task03::Waker);
326327

0 commit comments

Comments
 (0)