From 8b07a4298cbe111caa81955629dffc52480cd93e Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Tue, 5 Sep 2017 20:17:32 -0700 Subject: [PATCH] Remove the AsyncRead + AsyncWrite type constraint from h2::client::Client (#53) --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 0895306..b4dc301 100644 --- a/src/client.rs +++ b/src/client.rs @@ -24,7 +24,7 @@ pub struct Handshake { } /// Marker type indicating a client peer -pub struct Client { +pub struct Client { connection: Connection, }