From a63efb2d02f07cc91cdc49c322ea380582444296 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Fri, 10 Oct 2025 17:45:06 +0200 Subject: [PATCH] Make Path impl fmt::Debug (#138) --- quinn/src/path.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/quinn/src/path.rs b/quinn/src/path.rs index 1701342e3..d5464c523 100644 --- a/quinn/src/path.rs +++ b/quinn/src/path.rs @@ -107,6 +107,7 @@ impl Future for OpenPath { } /// An open (Multi)Path +#[derive(Debug)] pub struct Path { pub(crate) id: PathId, pub(crate) conn: ConnectionRef,