Skip to content

Commit

Permalink
remove another 'static bound on Connection
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraef committed May 31, 2024
1 parent fc4bff8 commit 3070385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/conn/http1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ where

impl<T, B> Connection<T, B>
where
T: Read + Write + Unpin + 'static,
T: Read + Write + Unpin,
B: Body + 'static,
B::Error: Into<Box<dyn StdError + Send + Sync>>,
{
Expand Down

0 comments on commit 3070385

Please sign in to comment.