(zelf: &Py<Self>, vm: &VirtualMachine)
| 220 | impl Hashable for PyMappingProxy { |
| 221 | #[inline] |
| 222 | fn hash(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<hash::PyHash> { |
| 223 | // Delegate hash to the underlying mapping |
| 224 | let obj = zelf.to_object(vm)?; |
| 225 | obj.hash(vm) |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | impl AsMapping for PyMappingProxy { |