From 4bb7b4997f7511d0e29d60047a2495b2729792bd Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Wed, 26 Jul 2023 21:54:56 -0500 Subject: [PATCH] fix: derives --- tokio-postgres/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-postgres/src/lib.rs b/tokio-postgres/src/lib.rs index 0185edd6..8a9cd30c 100644 --- a/tokio-postgres/src/lib.rs +++ b/tokio-postgres/src/lib.rs @@ -200,7 +200,7 @@ where } /// An asynchronous notification. -#[derive(Clone, Debug)] +#[derive(Clone, Debug, PartialEq, Eq)] #[allow(missing_docs)] pub struct Notification { pub process_id: i32,