(self, vm: &VirtualMachine)
| 139 | |
| 140 | impl ToPyObject for crt_fd::Owned { |
| 141 | fn to_pyobject(self, vm: &VirtualMachine) -> PyObjectRef { |
| 142 | self.into_raw().to_pyobject(vm) |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | impl ToPyObject for crt_fd::Borrowed<'_> { |
no test coverage detected