Used by `PyList::iter()`.
| 104 | |
| 105 | /// Used by `PyList::iter()`. |
| 106 | pub struct PyListIterator<'a, 'p> { |
| 107 | py: Python<'p>, |
| 108 | list: &'a PyList, |
| 109 | index: usize, |
| 110 | } |
| 111 | |
| 112 | impl<'a, 'p> Iterator for PyListIterator<'a, 'p> { |
| 113 | type Item = PyObject; |
nothing calls this directly
no outgoing calls
no test coverage detected