(slf: Py<Self>, py: Python<'_>)
| 284 | } |
| 285 | |
| 286 | fn aclose(slf: Py<Self>, py: Python<'_>) -> PyResult<Bound<'_, PyAny>> { |
| 287 | pyo3_async_runtimes::tokio::future_into_py(py, async move { |
| 288 | Self::close_async_impl(slf)?; |
| 289 | Ok(()) |
| 290 | }) |
| 291 | } |
| 292 | |
| 293 | fn aiter_bytes(slf: Py<Self>, py: Python) -> PyResult<PyResponseAsyncBytesIterator> { |
| 294 | let mut slf_ref = slf.borrow_mut(py); |
nothing calls this directly
no outgoing calls
no test coverage detected