Returns a reference to the inner client.
(&self)
| 1280 | |
| 1281 | /// Returns a reference to the inner client. |
| 1282 | pub fn inner(&self) -> &Client { |
| 1283 | self.inner.as_ref().expect("inner invariant violated") |
| 1284 | } |
| 1285 | |
| 1286 | async fn send_without_session<T, F>(&self, f: F) -> T |
| 1287 | where |
no test coverage detected