From 31bd538481bb29c1024bbf18a86a755ebe5154f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Michel?= Date: Mon, 10 Jul 2023 13:03:34 +0000 Subject: [PATCH] remove generic arg from Connection --- transport/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/lib.rs b/transport/src/lib.rs index 54cc817..fdb5bfc 100644 --- a/transport/src/lib.rs +++ b/transport/src/lib.rs @@ -9,7 +9,7 @@ type ErrorCode = u64; type StreamId = u64; /// Trait representing a QUIC connection. -pub trait Connection { +pub trait Connection { /// The type produced by `poll_accept_bidi()` type BidiStream: SendStream + RecvStream; /// The type of the sending part of `BidiStream`