(slf: PyRef<'_, Self>)
| 99 | #[pymethods] |
| 100 | impl PyResponseAsyncBytesIterator { |
| 101 | fn __aiter__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> { |
| 102 | slf |
| 103 | } |
| 104 | |
| 105 | fn __anext__<'py>(&mut self, py: Python<'py>) -> PyResult<Bound<'py, PyAny>> { |
| 106 | if let Some(content) = self.ready_content.take() { |
nothing calls this directly
no outgoing calls
no test coverage detected