(slf: PyRefMut<Self>)
| 26 | #[pyproto] |
| 27 | impl PyIterProtocol for PyObjectIterator { |
| 28 | fn __iter__(slf: PyRefMut<Self>) -> PyResult<Py<PyObjectIterator>> { |
| 29 | Ok(slf.into()) |
| 30 | } |
| 31 | fn __next__(mut slf: PyRefMut<Self>) -> PyResult<Option<PyObject>> { |
| 32 | Ok(slf.iterator.next()) |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected