(&self, typ: PyTypeRef, vm: &VirtualMachine)
| 1436 | } |
| 1437 | |
| 1438 | pub fn set_class(&self, typ: PyTypeRef, vm: &VirtualMachine) { |
| 1439 | self.0.typ.swap_to_temporary_refs(typ, vm); |
| 1440 | } |
| 1441 | |
| 1442 | #[deprecated(note = "use downcast_ref_if_exact instead")] |
| 1443 | #[inline(always)] |
no test coverage detected