(zelf: PyRef<Self>, vm: &VirtualMachine)
| 2290 | |
| 2291 | impl Iterable for Row { |
| 2292 | fn iter(zelf: PyRef<Self>, vm: &VirtualMachine) -> PyResult { |
| 2293 | Iterable::iter(zelf.data.clone(), vm) |
| 2294 | } |
| 2295 | } |
| 2296 | |
| 2297 | impl AsMapping for Row { |
no test coverage detected