From 2efa9125f6f4920b46e5a881f50606afb9bc326e Mon Sep 17 00:00:00 2001 From: Joey Sacchini Date: Tue, 15 Dec 2020 11:53:04 -0500 Subject: fully-qualified generics on conn --- src/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.rs b/src/connection.rs index 84e0b21..f53f07d 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -119,7 +119,7 @@ where } #[cfg(feature = "gat")] - async fn read_packet_async

(&mut self) -> ReadResult<>::Packet> + async fn read_packet_async

(&mut self) -> ReadResult< as RawPacket<'_>>::Packet> where P: PacketKind { -- cgit