From 9b5b065b1b559b18f76f9b70c46c5893b5fbcc04 Mon Sep 17 00:00:00 2001 From: Marcin Pajkowski Date: Sun, 26 Apr 2020 14:56:29 +0200 Subject: [PATCH] Derive `Debug` for `WebSocketStream` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index a939fe0..92e49a2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -203,6 +203,7 @@ where /// through the respective `Stream` and `Sink`. Check more information about /// them in `futures-rs` crate documentation or have a look on the examples /// and unit tests for this crate. +#[derive(Debug)] pub struct WebSocketStream { inner: WebSocket>, }