From 633bdf6cbff9c220cf5681b985feb98a2b41fdb6 Mon Sep 17 00:00:00 2001 From: Nathan KREMER Date: Sun, 15 Oct 2023 18:20:29 +0200 Subject: [PATCH] fix from tungstenite error --- gremlin-client/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gremlin-client/src/error.rs b/gremlin-client/src/error.rs index f762847e..8d0d72c8 100644 --- a/gremlin-client/src/error.rs +++ b/gremlin-client/src/error.rs @@ -12,7 +12,7 @@ pub enum GremlinError { Generic(String), #[error(transparent)] - WebSocket(tungstenite::error::Error), + WebSocket(#[from] tungstenite::error::Error), #[error(transparent)] Pool(#[from] r2d2::Error),