diff --git a/concurrency/src/tasks/gen_server.rs b/concurrency/src/tasks/gen_server.rs index 6c15ce0..5d42603 100644 --- a/concurrency/src/tasks/gen_server.rs +++ b/concurrency/src/tasks/gen_server.rs @@ -6,6 +6,7 @@ use std::{fmt::Debug, future::Future, panic::AssertUnwindSafe}; use crate::error::GenServerError; +#[derive(Debug)] pub struct GenServerHandle { pub tx: mpsc::Sender>, /// Cancellation token to stop the GenServer