From 4527a53181aeac955b0b05f33b09b9a5b67ab59c Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 12 Dec 2016 10:31:20 -0800 Subject: [PATCH] remove Clone impl from Client --- src/client.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 2dd616f..e7f19ef 100644 --- a/src/client.rs +++ b/src/client.rs @@ -25,7 +25,6 @@ static DEFAULT_USER_AGENT: &'static str = concat!(env!("CARGO_PKG_NAME"), "/", e /// /// The `Client` holds a connection pool internally, so it is advised that /// you create one and reuse it. -#[derive(Clone)] pub struct Client { inner: Arc, //::hyper::Client, }