(&self, cx: &mut Context)
| 632 | #[async_trait] |
| 633 | impl<T: Api<C> + Send + Sync, C: Clone + Send + Sync> ApiNoContext<C> for ContextWrapper<T, C> { |
| 634 | fn poll_ready(&self, cx: &mut Context) -> Poll<Result<(), ServiceError>> { |
| 635 | self.api().poll_ready(cx) |
| 636 | } |
| 637 | |
| 638 | fn context(&self) -> &C { |
| 639 | ContextWrapper::context(self) |