From e9c773c31703f171cdbe54a3d52c444796a8a64b Mon Sep 17 00:00:00 2001 From: Kyle Huey Date: Wed, 2 May 2018 09:28:09 -0700 Subject: [PATCH] Derive Debug on Notifications. --- tokio-postgres/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tokio-postgres/src/lib.rs b/tokio-postgres/src/lib.rs index 972c776b..8a3f0e5f 100644 --- a/tokio-postgres/src/lib.rs +++ b/tokio-postgres/src/lib.rs @@ -1145,6 +1145,7 @@ impl Connection { } /// A stream of asynchronous Postgres notifications. +#[derive(Debug)] pub struct Notifications(Connection); impl Notifications {