(&self)
| 124 | C: Clone + Send + Sync + 'static, |
| 125 | { |
| 126 | fn clone(&self) -> Self { |
| 127 | Self { |
| 128 | client_service: self.client_service.clone(), |
| 129 | base_path: self.base_path.clone(), |
| 130 | marker: PhantomData, |
| 131 | } |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | impl<Connector, C> Client<DropContextService<hyper::client::Client<Connector, Body>, C>, C> |
no outgoing calls