From 9efbf75f5cff0c3fdd390303241bc84fb5c61bf1 Mon Sep 17 00:00:00 2001 From: Paul-Nicolas Madelaine Date: Wed, 11 Oct 2023 14:02:35 +0200 Subject: [PATCH] server: remove useless trait implementations --- typhon/src/tasks.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/typhon/src/tasks.rs b/typhon/src/tasks.rs index d6389b0e..c5abef5e 100644 --- a/typhon/src/tasks.rs +++ b/typhon/src/tasks.rs @@ -32,14 +32,12 @@ enum Msg { Wait(Id, oneshot::Sender<()>), } -#[derive(Debug)] struct TaskHandle { canceler: Option>, handle: JoinHandle<()>, waiters: Vec>, } -#[derive(Debug)] pub struct Tasks { handle: Mutex>>, sender: mpsc::Sender>,