From a88ae4191af100747404db207976c7da1a3b8370 Mon Sep 17 00:00:00 2001 From: Mark Rousskov Date: Thu, 19 Sep 2024 17:38:17 -0400 Subject: [PATCH] feat(s2n-quic-dc): Make stream::recv::error::Kind pub (#2326) --- dc/s2n-quic-dc/src/stream/recv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dc/s2n-quic-dc/src/stream/recv.rs b/dc/s2n-quic-dc/src/stream/recv.rs index e1b7092e31..880e5495af 100644 --- a/dc/s2n-quic-dc/src/stream/recv.rs +++ b/dc/s2n-quic-dc/src/stream/recv.rs @@ -10,4 +10,4 @@ pub mod shared; pub mod state; pub mod worker; -pub use error::Error; +pub use error::{Error, Kind};