Fix client impl bounds

This commit is contained in:
Jonas Platte 2019-12-16 21:56:05 +01:00
parent 19219dea6b
commit 8dfe42e846
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -172,7 +172,7 @@ impl HttpsClient {
impl<C> Client<C>
where
C: hyper::client::connect::Connect,
C: hyper::client::connect::Connect + Clone + Send + Sync + 'static,
{
/// Creates a new client using the given `hyper::Client`.
///