(vm: &VirtualMachine, obj: PyObjectRef)
| 18 | /// Rust-side only version of TryFromObject to reduce unnecessary Rc::clone |
| 19 | impl<T: for<'a> TryFromBorrowedObject<'a>> TryFromObject for T { |
| 20 | fn try_from_object(vm: &VirtualMachine, obj: PyObjectRef) -> PyResult<Self> { |
| 21 | TryFromBorrowedObject::try_from_borrowed_object(vm, &obj) |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | impl PyObjectRef { |
nothing calls this directly
no test coverage detected