(vm: &VirtualMachine, value: &'a PyObject)
| 106 | |
| 107 | impl<'a, T: 'a + TryFromObject> TryFromBorrowedObject<'a> for Vec<T> { |
| 108 | fn try_from_borrowed_object(vm: &VirtualMachine, value: &'a PyObject) -> PyResult<Self> { |
| 109 | vm.extract_elements_with(value, |obj| T::try_from_object(vm, obj)) |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | impl<'a, T: PyPayload> TryFromBorrowedObject<'a> for &'a Py<T> { |
nothing calls this directly
no test coverage detected