(slf: PyRef<'_, Self>)
| 27 | #[pymethods] |
| 28 | impl PyResponseBytesIterator { |
| 29 | fn __iter__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> { |
| 30 | slf |
| 31 | } |
| 32 | |
| 33 | fn __next__(mut slf: PyRefMut<'_, Self>) -> PyResult<Option<Vec<u8>>> { |
| 34 | if let Some(content) = slf.ready_content.take() { |
nothing calls this directly
no outgoing calls
no test coverage detected