(&self, vm: &VirtualMachine)
| 830 | type Owned: ToPyObject; |
| 831 | fn _to_owned(&self, vm: &VirtualMachine) -> Self::Owned; |
| 832 | fn to_pyobject(&self, vm: &VirtualMachine) -> PyObjectRef { |
| 833 | self._to_owned(vm).to_pyobject(vm) |
| 834 | } |
| 835 | fn key_hash(&self, vm: &VirtualMachine) -> PyResult<HashValue>; |
| 836 | fn key_is(&self, other: &PyObject) -> bool; |
| 837 | fn key_eq(&self, vm: &VirtualMachine, other_key: &PyObject) -> PyResult<bool>; |
no test coverage detected