diff options
author | Joey Sacchini <joey@sacchini.net> | 2020-12-07 18:48:10 -0500 |
---|---|---|
committer | Joey Sacchini <joey@sacchini.net> | 2020-12-07 18:48:10 -0500 |
commit | 8e707cd6e29825b52d3c72006c109c4aac145943 (patch) | |
tree | d7f359b92cc6b7905ec6726f878d05d405563a08 /src/connection.rs | |
parent | 3007f0385cf998f4dc394bd05f02ca8dfce333d1 (diff) | |
download | craftio-rs-8e707cd6e29825b52d3c72006c109c4aac145943.tar.gz craftio-rs-8e707cd6e29825b52d3c72006c109c4aac145943.tar.bz2 craftio-rs-8e707cd6e29825b52d3c72006c109c4aac145943.zip |
remove redundant as
Diffstat (limited to 'src/connection.rs')
-rw-r--r-- | src/connection.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.rs b/src/connection.rs index 84e0b21..24ea74f 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -57,7 +57,7 @@ where } #[cfg(feature = "gat")] - fn read_packet<P>(&mut self) -> ReadResult<<P::RawPacket<'_> as RawPacket>::Packet> + fn read_packet<P>(&mut self) -> ReadResult<<P::RawPacket<'_>>::Packet> where P: PacketKind { |