(&mut self, req: LambdaInvocation)
| 38 | } |
| 39 | |
| 40 | fn call(&mut self, req: LambdaInvocation) -> Self::Future { |
| 41 | let request_fut = self.inner.call(req); |
| 42 | let client = self.client.clone(); |
| 43 | RuntimeApiClientFuture::First(request_fut, client) |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | impl<S> Clone for RuntimeApiClientService<S> |