(&self)
| 437 | } |
| 438 | |
| 439 | fn retrieve(&self) -> (&PyObject, &VirtualMachine) { |
| 440 | unsafe { (self.obj.as_ref(), &*self.vm) } |
| 441 | } |
| 442 | |
| 443 | unsafe extern "C" fn destructor(data: *mut c_void) { |
| 444 | drop(unsafe { Box::from_raw(data.cast::<Self>()) }); |
no test coverage detected