From 67236146cfa14ae22fc2f5e1130fd80f9e29b0b6 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 30 Dec 2023 20:50:27 -0500 Subject: [PATCH] Remove an unnecessary Unpin bound --- src/client/legacy/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/legacy/client.rs b/src/client/legacy/client.rs index 48b17db..c679091 100644 --- a/src/client/legacy/client.rs +++ b/src/client/legacy/client.rs @@ -129,7 +129,7 @@ impl Client<(), ()> { impl Client where C: Connect + Clone + Send + Sync + 'static, - B: Body + Send + 'static + Unpin, + B: Body + Send + 'static, B::Data: Send, B::Error: Into>, {